Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d75edc41 authored by Deepanshu Gupta's avatar Deepanshu Gupta Committed by Android (Google) Code Review
Browse files

Merge "Fix invalid conditional check." into lmp-dev

parents 8a2ff1ec ca22ba9e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -379,7 +379,7 @@ public final class ResourceHelper {
        }

        // check the first character
        if (buf[0] < '0' && buf[0] > '9' && buf[0] != '.' && buf[0] != '-') {
        if ((buf[0] < '0' || buf[0] > '9') && buf[0] != '.' && buf[0] != '-') {
            return false;
        }