Skip to content

Commit 880a48f

Browse files
committed
remove test code
references 596a2ba
1 parent 80b0d5e commit 880a48f

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/main/java/org/cryptomator/macos/update/DmgUpdateMechanism.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,6 @@ protected DownloadUpdateInfo checkForUpdate(String currentVersion, LatestVersion
3535
var updateVersion = response.latestVersion().macVersion();
3636
var asset = response.assets().stream().filter(a -> a.name().endsWith(suffix)).findAny().orElse(null);
3737

38-
39-
// FIXME: remove this block! see https://github.com/cryptomator/cryptomator/issues/4058
40-
if ((currentVersion.startsWith("1.19.0-alpha") || currentVersion.startsWith("1.19.0-beta")) && asset != null) {
41-
return new DownloadUpdateInfo(this, updateVersion, asset);
42-
}
43-
// END FIXME
44-
45-
4638
if (UpdateMechanism.isUpdateAvailable(updateVersion, currentVersion) && asset != null) {
4739
return new DownloadUpdateInfo(this, updateVersion, asset);
4840
} else {

0 commit comments

Comments
 (0)