No effective change - format only

This commit is contained in:
rbygrave
2014-07-09 23:51:19 +12:00
parent 1e3035c558
commit 176197513d
9 changed files with 2270 additions and 2288 deletions
@@ -2,21 +2,21 @@ package com.avaje.ebeaninternal.server.querydefn;
public class NaturalKeyBindParam {
private final String name;
private final Object value;
public NaturalKeyBindParam(String name, Object value) {
this.name = name;
this.value = value;
}
private final String name;
public String getName() {
return name;
}
private final Object value;
public NaturalKeyBindParam(String name, Object value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public Object getValue() {
return value;
}
public Object getValue() {
return value;
}
}