Skip to content

Commit

Permalink
Merge branch 'master' of github.com:4ntoine/Firmata
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Smirnov committed Dec 10, 2011
2 parents 301bae0 + 527fe97 commit 77b6e73
Showing 1 changed file with 13 additions and 0 deletions.
Expand Up @@ -8,4 +8,17 @@ public class SystemResetMessage extends Message {
public SystemResetMessage() {
super();
}

@Override
public boolean equals(Object obj) {
if (obj == null)
return false;

return obj instanceof SystemResetMessage;
}

@Override
public String toString() {
return "SystemResetMessage[]";
}
}

0 comments on commit 77b6e73

Please sign in to comment.