Skip to content

Commit

Permalink
Stampa progetto: anomalia null-pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
raffaelepagano committed Jan 2, 2017
1 parent 4a193a8 commit 67367f7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public Forward doBringBackSearchFindGaeForPrint(ActionContext context, Stampa_si
Stampa_situazione_sintetica_x_progettoBulk stampa_gae = ((Stampa_situazione_sintetica_x_progettoBulk)bp.getModel());

stampa_gae.setGaeForPrint(gae);
stampa_gae.setProgettoForPrint(gae.getProgetto());
if (gae!=null)
stampa_gae.setProgettoForPrint(gae.getProgetto());
return context.findDefaultForward();
}

Expand Down

0 comments on commit 67367f7

Please sign in to comment.