Pass a Locale to toUpperCase()
Make lint happy.
This commit is contained in:
parent
5c2cf88a1d
commit
81573d81a0
1 changed files with 2 additions and 1 deletions
|
@ -9,6 +9,7 @@ import android.os.Build;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
|
||||
public final class Server {
|
||||
|
||||
|
@ -126,7 +127,7 @@ public final class Server {
|
|||
|
||||
Options options = new Options();
|
||||
|
||||
Ln.Level level = Ln.Level.valueOf(args[1].toUpperCase());
|
||||
Ln.Level level = Ln.Level.valueOf(args[1].toUpperCase(Locale.ENGLISH));
|
||||
options.setLogLevel(level);
|
||||
|
||||
int maxSize = Integer.parseInt(args[2]) & ~7; // multiple of 8
|
||||
|
|
Loading…
Reference in a new issue