Remove unused method

This commit is contained in:
Chris Eager 2021-07-01 12:26:31 -05:00 committed by Chris Eager
parent 43be72d076
commit d5b0d99a54
1 changed files with 0 additions and 4 deletions

View File

@ -43,10 +43,6 @@ public class AttributeValues {
return AttributeValue.builder().b(value).build();
}
public static AttributeValue fromBoolean(boolean value) {
return AttributeValue.builder().bool(value).build();
}
private static int toInt(AttributeValue av) {
return Integer.parseInt(av.n());
}