Skip to content

Commit

Permalink
repl: disable by default
Browse files Browse the repository at this point in the history
for security, plus it's not that much used anymore
  • Loading branch information
kristianlm committed Aug 25, 2020
1 parent 2283f23 commit a082eb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public void exe(Machine m) {
Toast.makeText(this, "error: " + e.getMessage(), Toast.LENGTH_LONG).show();
}

if(server == null) {
if(false && server == null) {
server = new Thread(new Runnable() {
@Override
public void run() {
Expand Down

0 comments on commit a082eb0

Please sign in to comment.