mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-18 06:45:03 -05:00
Fix DefaultLocale Lint Warnings
This commit is contained in:
parent
122e562675
commit
736eac074d
@ -32,6 +32,7 @@ import java.util.List;
|
|||||||
import java.util.TimeZone;
|
import java.util.TimeZone;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
import org.apache.http.HttpEntity;
|
import org.apache.http.HttpEntity;
|
||||||
import org.apache.http.HttpResponse;
|
import org.apache.http.HttpResponse;
|
||||||
@ -172,11 +173,11 @@ public class HkpKeyServer extends KeyServer {
|
|||||||
if (e.getCode() == 404) {
|
if (e.getCode() == 404) {
|
||||||
return results;
|
return results;
|
||||||
} else {
|
} else {
|
||||||
if (e.getData().toLowerCase().contains("no keys found")) {
|
if (e.getData().toLowerCase(Locale.US).contains("no keys found")) {
|
||||||
return results;
|
return results;
|
||||||
} else if (e.getData().toLowerCase().contains("too many")) {
|
} else if (e.getData().toLowerCase(Locale.US).contains("too many")) {
|
||||||
throw new TooManyResponses();
|
throw new TooManyResponses();
|
||||||
} else if (e.getData().toLowerCase().contains("insufficient")) {
|
} else if (e.getData().toLowerCase(Locale.US).contains("insufficient")) {
|
||||||
throw new InsufficientQuery();
|
throw new InsufficientQuery();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user