[Bugfix] fixed NPE due to accessing fields instead of parameter

This commit is contained in:
Robert von Burg 2014-09-14 17:07:03 +02:00
parent 17b023be44
commit 25774e8613
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public class LoginResult {
* the locale to set
*/
public void setLocale(Locale locale) {
this.locale = this.locale.toString();
this.locale = locale.toString();
}
/**