Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
prettymuchbryce authored Jan 31, 2018
1 parent 1b3ca43 commit 376d74a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ package main;
import com.prettymuchbryce.abidecoder.Decoder;

public class Main {
public static void main(String[] args) {
Decoder d = new Decoder();
d.addAbi(myAbiJsonString);
Decoder.DecodedMethod result = d.decodeMethod(methodData);
System.out.print(result);
}
public static void main(String[] args) {
Decoder d = new Decoder();
d.addAbi(myAbiJsonString);
Decoder.DecodedMethod result = d.decodeMethod(methodData);
System.out.print(result);
}
}
```

Expand Down

0 comments on commit 376d74a

Please sign in to comment.