Skip to content

Commit

Permalink
Fixes #80.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Oct 24, 2023
1 parent d96b918 commit b263e53
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public class Configuration extends ConfigLookup {
private String apiKey;

private boolean graphvizEnabled = false;
private boolean safeMode = true;
private boolean internetConnection = true;

private final Map<String,Boolean> features = new HashMap<>();
Expand Down Expand Up @@ -155,6 +154,10 @@ public void setGraphvizEnabled(boolean graphvizEnabled) {
this.graphvizEnabled = graphvizEnabled;
}

public boolean isSafeMode() {
return false;
}

public boolean hasInternetConnection() {
return internetConnection;
}
Expand Down

0 comments on commit b263e53

Please sign in to comment.