Skip to content

Commit df0fec6

Browse files
committed
switching off connection to home server
The user is not asked and given the possibility to switch of "phoning home". Deactivated.
1 parent b2094f3 commit df0fec6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

system/src/de/uka/ilkd/key/util/TipOfTheDay.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ private static String[] getTipsFromFile() throws IOException {
6363
}
6464

6565
private static String[] getTipsOnline() throws IOException {
66-
return new String[]{checkLatestVersion()};
66+
return new String[0];
67+
// KeY should not phone home without asking the user
68+
// return new String[]{checkLatestVersion()};
6769
}
6870

6971
private static String checkLatestVersion() {
@@ -75,4 +77,4 @@ private static String checkLatestVersion() {
7577
else return "It seems that you are using an old version of KeY. The current stable version is "+latestVersion;
7678
}
7779

78-
}
80+
}

0 commit comments

Comments
 (0)