Skip to content
This repository was archived by the owner on Feb 11, 2022. It is now read-only.

Commit 95f0d1f

Browse files
committed
one more Locale usage in casing
1 parent b432c5e commit 95f0d1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • analyzer/src/main/java/com/novoda/sqlite/model

analyzer/src/main/java/com/novoda/sqlite/model/Column.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public DataAffinity getAffinity() {
4646
}
4747

4848
public boolean isBoolean() {
49-
return affinity == DataAffinity.NUMERIC && type.toLowerCase().contains("bool");
49+
return affinity == DataAffinity.NUMERIC && type.toLowerCase(Locale.US).contains("bool");
5050
}
5151

5252

0 commit comments

Comments
 (0)