From 09385a6a89a3a5ffd4e4167a727a5f97820a1fe7 Mon Sep 17 00:00:00 2001 From: Joe Hansche Date: Thu, 23 Mar 2017 11:21:51 -0700 Subject: [PATCH] Fix DefaultLocale lint errors --- .../src/main/java/com/parse/LiveQueryException.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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;