Don’t delete accounts after reconciling

This commit is contained in:
Chris Eager
2021-06-17 17:14:55 -05:00
committed by Chris Eager
parent 19617c14f8
commit eac48a6617
4 changed files with 52 additions and 32 deletions

View File

@@ -43,6 +43,10 @@ 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());
}