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

Commit b9f9633a authored by Alexandre Roux's avatar Alexandre Roux
Browse files

forgotten semicolon

parent 69ffa6ff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -286,7 +286,7 @@ public class Utils {
				int[] updateVersionParts = parseSemVer(update.getVersion());
				int updateMajorVersion = updateVersionParts[0];
				int updateMinorVersion = updateVersionParts[1];
				float thisUpdate = Float.parseFloat(updateMajorVersion + "." + updateMinorVersion)
				float thisUpdate = Float.parseFloat(updateMajorVersion + "." + updateMinorVersion);
				if (thisUpdate > highestAvailableVersion) {
					highestAvailableVersion = thisUpdate;
				}