Skip to content

Commit

Permalink
[truffle] Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Sep 3, 2018
1 parent 9d73c41 commit 535f1ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions gen/truffle/.gitignore
@@ -0,0 +1 @@
*
Expand Up @@ -25,7 +25,7 @@ public long getPid() {
String name = ManagementFactory.getRuntimeMXBean().getName();
int offset = name.indexOf('@');
if (offset == -1) {
throw new RuntimeException("Can't get pid");;
throw new RuntimeException("Can't get pid");
}
try {
return Long.decode(name.substring(0, offset));
Expand Down

0 comments on commit 535f1ee

Please sign in to comment.