refactoring

This commit is contained in:
rusefillc 2022-04-04 21:10:51 -04:00
parent 4319b3e6ae
commit 4f6e466843
1 changed files with 1 additions and 2 deletions

View File

@ -226,8 +226,7 @@ public class Field {
}
public static Field create(String name, int offset, FieldType type, String... options) {
Field field = new Field(name, offset, type, options);
return field;
return new Field(name, offset, type, options);
}
public static Field create(String name, int offset, int stringSize, FieldType type) {