Skip to content
This repository has been archived by the owner on Apr 16, 2022. It is now read-only.

Commit

Permalink
Fix build (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanokwa authored Apr 30, 2017
1 parent d94960e commit 9078d36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/org/opendatakit/briefcase/util/ExportToCsv.java
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 9078d36

Please sign in to comment.