Skip to content

Commit

Permalink
Removed unused function.
Browse files Browse the repository at this point in the history
  • Loading branch information
arndtjonasson committed Jun 2, 2016
1 parent 445206a commit b099ecc
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions api/src/main/java/sics/port/PluginRPort.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,4 @@ public String readString() {
public Object receive() {
return null;
}

private int byteArrayToInt(byte[] b) {
return b[3] & 0xFF | (b[2] & 0xFF) << 8 | (b[1] & 0xFF) << 16
| (b[0] & 0xFF) << 24;
}
}

0 comments on commit b099ecc

Please sign in to comment.