diff --git a/ParseLiveQuery/src/main/java/com/parse/LiveQueryException.java b/ParseLiveQuery/src/main/java/com/parse/LiveQueryException.java index c620543..1f5be2a 100644 --- a/ParseLiveQuery/src/main/java/com/parse/LiveQueryException.java +++ b/ParseLiveQuery/src/main/java/com/parse/LiveQueryException.java @@ -1,5 +1,7 @@ package com.parse; +import java.util.Locale; + public abstract class LiveQueryException extends Exception { private LiveQueryException() { @@ -53,7 +55,7 @@ public static class InvalidJSONException extends LiveQueryException { private final String expectedKey; /* package */ InvalidJSONException(String json, String expectedKey) { - super(String.format("Invalid JSON; expectedKey: %s, json: %s", expectedKey, json)); + super(String.format(Locale.US, "Invalid JSON; expectedKey: %s, json: %s", expectedKey, json)); this.json = json; this.expectedKey = expectedKey; } @@ -77,7 +79,7 @@ public static class ServerReportedException extends LiveQueryException { private final boolean reconnect; public ServerReportedException(int code, String error, boolean reconnect) { - super(String.format("Server reported error; code: %d, error: %s, reconnect: %b", code, error, reconnect)); + super(String.format(Locale.US, "Server reported error; code: %d, error: %s, reconnect: %b", code, error, reconnect)); this.code = code; this.error = error; this.reconnect = reconnect;