Skip to content

Commit

Permalink
fix: removed unnecessary semicolon from PodExecutor (3628)
Browse files Browse the repository at this point in the history
As this line is part of try catch statment. a semicolon is not needed.

I couldn't sign up as requested in the contribution guide in https://accounts.eclipse.org
signing up give error, "Your GitHub username is invalid"
  • Loading branch information
laithisbaitan authored Jan 14, 2025
1 parent 2dd94b6 commit dfc0139
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void uploadChangedFilesToPod(Collection<HasMetadata> resources, File changedFile
void executeCommandInPod(Collection<HasMetadata> resources, String command) throws InterruptedException, WatchException, IOException {
final KubernetesClient client = watcherContext.getJKubeServiceHub().getClient();
try (
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream()
) {
final String namespace = watcherContext.getNamespace();
final ExecListenerLatch latch = new ExecListenerLatch();
Expand Down

0 comments on commit dfc0139

Please sign in to comment.