Skip to content

Commit

Permalink
fix for NPE on pageSystemConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Suta committed Jan 9, 2015
1 parent 7351f06 commit 74bc08a
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -39,7 +39,9 @@ public class MailServerConfigurationTypeDto implements Serializable {
private String password;
private MailTransportSecurityType mailTransportSecurityType;

public MailServerConfigurationTypeDto(){}
public MailServerConfigurationTypeDto(){
oldConfig = new MailServerConfigurationType();
}

public MailServerConfigurationTypeDto(MailServerConfigurationType config){

Expand Down

0 comments on commit 74bc08a

Please sign in to comment.