From 9078d36d16f18b50677ce6d8a4fcacf54d4aa236 Mon Sep 17 00:00:00 2001 From: Yaw Anokwa Date: Sun, 30 Apr 2017 11:59:38 -0500 Subject: [PATCH] Fix build (#121) --- src/org/opendatakit/briefcase/util/ExportToCsv.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/org/opendatakit/briefcase/util/ExportToCsv.java b/src/org/opendatakit/briefcase/util/ExportToCsv.java index 4dedc7385..b6f1fbfb9 100644 --- a/src/org/opendatakit/briefcase/util/ExportToCsv.java +++ b/src/org/opendatakit/briefcase/util/ExportToCsv.java @@ -490,9 +490,9 @@ private boolean emitSubmissionCsv(OutputStreamWriter osw, EncryptionInformation binaryFileHash = FileSystemUtils.getMd5Hash(binaryFile); while (destFile.exists()) { - /* check if the contents of the destFile and binaryFile is same - * if yes, skip the export of such file - */ + /* check if the contents of the destFile and binaryFile is same + * if yes, skip the export of such file + */ if (fileHashMap.containsKey(destFile.getName())) { destFileHash = fileHashMap.get(destFile.getName());