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

Commit 667d8b4a authored by Romain Hunault's avatar Romain Hunault 💻 Committed by Romain Hunault
Browse files

Add forgotten parenthesis

parent 66a0637e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ public class Utils {
    public static boolean canInstall(UpdateBaseInfo update) {
        return (SystemProperties.getBoolean(Constants.PROP_UPDATER_ALLOW_DOWNGRADING, false) ||
                update.getTimestamp() > SystemProperties.getLong(Constants.PROP_BUILD_DATE, 0) ||
                update.getAndroidVersion().equals(SystemProperties.get(Constants.PROP_BUILD_ANDROID_VERSION));
                update.getAndroidVersion().equals(SystemProperties.get(Constants.PROP_BUILD_ANDROID_VERSION)));
    }

    public static List<UpdateInfo> parseJson(File file, boolean compatibleOnly)