We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2094f3 commit df0fec6Copy full SHA for df0fec6
system/src/de/uka/ilkd/key/util/TipOfTheDay.java
@@ -63,7 +63,9 @@ private static String[] getTipsFromFile() throws IOException {
63
}
64
65
private static String[] getTipsOnline() throws IOException {
66
- return new String[]{checkLatestVersion()};
+ return new String[0];
67
+ // KeY should not phone home without asking the user
68
+ // return new String[]{checkLatestVersion()};
69
70
71
private static String checkLatestVersion() {
@@ -75,4 +77,4 @@ private static String checkLatestVersion() {
75
77
else return "It seems that you are using an old version of KeY. The current stable version is "+latestVersion;
76
78
79
-}
80
+}
0 commit comments