Rename THRESHOLD to threshold
Since the field is not final anymore, lint expects the name not to be capitalized.
This commit is contained in:
parent
8f46e18426
commit
5c2cf88a1d
1 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@ public final class Ln {
|
||||||
DEBUG, INFO, WARN, ERROR
|
DEBUG, INFO, WARN, ERROR
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Level THRESHOLD;
|
private static Level threshold;
|
||||||
|
|
||||||
private Ln() {
|
private Ln() {
|
||||||
// not instantiable
|
// not instantiable
|
||||||
|
@ -29,11 +29,11 @@ public final class Ln {
|
||||||
* @param level the log level
|
* @param level the log level
|
||||||
*/
|
*/
|
||||||
public static void initLogLevel(Level level) {
|
public static void initLogLevel(Level level) {
|
||||||
THRESHOLD = level;
|
threshold = level;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isEnabled(Level level) {
|
public static boolean isEnabled(Level level) {
|
||||||
return level.ordinal() >= THRESHOLD.ordinal();
|
return level.ordinal() >= threshold.ordinal();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void d(String message) {
|
public static void d(String message) {
|
||||||
|
|
Loading…
Reference in a new issue