Skip to content

Commit 080a7dd

Browse files
committed
These lines shouldn't be commented out
1 parent 3d00cd7 commit 080a7dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dbsync/gcsync/src/main/java/com/google/edwmigration/dbsync/gcsync/GcsyncClient.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ private void scanFiles() throws IOException, URISyntaxException {
102102

103103
try (DirectoryStream<Path> stream = Files.newDirectoryStream(currentDirectory)) {
104104
for (Path path : stream) {
105-
// if (path.getFileName().toString().equals(Constants.JAR_FILE_NAME)) {
106-
// // Don't sync the jar to target bucket
107-
// continue;
108-
// }
105+
if (path.getFileName().toString().equals(Constants.JAR_FILE_NAME)) {
106+
// Don't sync the jar to target bucket
107+
continue;
108+
}
109109
if (Files.isDirectory(path)) {
110110
// We don't support nested scanning for now
111111
continue;

0 commit comments

Comments
 (0)