Skip to content

Commit

Permalink
errorprone :: ReturnAtTheEndOfVoidFunction (#793)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb committed May 29, 2024
1 parent c86be25 commit bb03892
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/emissary/place/UnixCommandPlace.java
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ protected void processData(IBaseDataObject tData) throws ResourceException {
} else {
serviceHook(serviceType, tData, outputData);
}
return;

}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/emissary/util/WatcherThread.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,6 @@ public static void main(String[] args) throws IOException {

System.out.println(name + " ends at " + new Date());

return;

}
}

0 comments on commit bb03892

Please sign in to comment.