Skip to content

Commit

Permalink
Fix DefaultLocale lint errors (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe authored and rogerhu committed Mar 23, 2017
1 parent 142774e commit aefdbef
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.parse;

import java.util.Locale;

public abstract class LiveQueryException extends Exception {

private LiveQueryException() {
Expand Down Expand Up @@ -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;
}
Expand All @@ -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;
Expand Down

0 comments on commit aefdbef

Please sign in to comment.