diff --git a/service/src/main/java/org/whispersystems/textsecuregcm/util/AttributeValues.java b/service/src/main/java/org/whispersystems/textsecuregcm/util/AttributeValues.java index 17e8836bb..5f6253c46 100644 --- a/service/src/main/java/org/whispersystems/textsecuregcm/util/AttributeValues.java +++ b/service/src/main/java/org/whispersystems/textsecuregcm/util/AttributeValues.java @@ -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()); }