Skip to content

Commit

Permalink
Fix typo in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
demery-pivotal committed Oct 26, 2020
1 parent c132286 commit 485f5dc
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -84,9 +84,9 @@ private void copyGemFirePropertiesFile(Path taskWorkingDir, Path workerWorkingDi
if (!Files.exists(taskPropertiesFile)) {
return;
}
Path workerPropertiesFileFile = workerWorkingDir.resolve(taskPropertiesFile.getFileName());
Path workerPropertiesFile = workerWorkingDir.resolve(taskPropertiesFile.getFileName());
try {
Files.copy(taskPropertiesFile, workerPropertiesFileFile, COPY_ATTRIBUTES);
Files.copy(taskPropertiesFile, workerPropertiesFile, COPY_ATTRIBUTES);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
Expand Down

0 comments on commit 485f5dc

Please sign in to comment.