Dead code be gone.

This commit is contained in:
Johannes Mockenhaupt 2017-07-16 03:41:05 +02:00
parent 93c0147b23
commit f7586268c7
No known key found for this signature in database
GPG key ID: 9E1EA6AF7BBBB0D1

View file

@ -1,19 +0,0 @@
package de.jotomo.ruffyscripter.commands;
public class PumpAlert {
public final int code;
public final String msg;
public PumpAlert(int code, String msg) {
this.code = code;
this.msg = msg;
}
@Override
public String toString() {
return "PumpAlert{" +
"code=" + code +
", msg='" + msg + '\'' +
'}';
}
}