Merge "Fix a reversed condition in the next alarm validator"

This commit is contained in:
Svetoslav
2015-02-12 19:32:21 +00:00
committed by Android (Google) Code Review

View File

@@ -2098,7 +2098,7 @@ public final class Settings {
@Override
public boolean validate(String value) {
// TODO: No idea what the correct format is.
return value == null || value.length() > MAX_LENGTH;
return value == null || value.length() < MAX_LENGTH;
}
};