Fix PrimaryProperties implementation bug

pull/137/head
johnniang 2019-04-02 00:25:28 +08:00
parent 2951fc5307
commit fc7304bc46
1 changed files with 2 additions and 2 deletions

View File

@ -26,10 +26,10 @@ public enum PrimaryProperties implements PropertyEnum {
@Override
public Class<?> getType() {
return null;
return type;
}
@Override
public String getValue() {
return null;
return value;
}}