Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix DefaultLocale lint errors #23

Merged
merged 1 commit into from
Mar 23, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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