google reader is no more :(

This commit is contained in:
Athou
2013-07-09 12:57:48 +02:00
parent 544eb2ee10
commit 308eaf8b8d
6 changed files with 5 additions and 44 deletions

View File

@@ -22,9 +22,6 @@ public class RegistrationRequest implements Serializable {
@ApiProperty(value = "email address for password recovery", required = true)
private String email;
@ApiProperty(value = "not used through the api", required = false)
private boolean googleImport = true;
public String getName() {
return name;
}
@@ -48,13 +45,4 @@ public class RegistrationRequest implements Serializable {
public void setEmail(String email) {
this.email = email;
}
public boolean isGoogleImport() {
return googleImport;
}
public void setGoogleImport(boolean googleImport) {
this.googleImport = googleImport;
}
}