Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
fix typo and organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmason committed Aug 19, 2013
1 parent f6b167d commit 6de5f56
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -20,6 +20,8 @@
*/
package org.zanata.file;

import static com.google.common.base.Strings.isNullOrEmpty;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
Expand Down Expand Up @@ -55,7 +57,6 @@
import org.zanata.service.TranslationFileService;

import com.google.common.base.Optional;
import static com.google.common.base.Strings.isNullOrEmpty;

// TODO damason: add thorough unit testing
@Slf4j
Expand Down Expand Up @@ -260,7 +261,7 @@ public File combineToTempFileAndDeleteUploadRecord(HDocumentUpload upload, Input
catch (SQLException e)
{
throw new ChunkUploadException(Status.INTERNAL_SERVER_ERROR,
"Error while retreiving document upload part contents", e);
"Error while retrieving document upload part contents", e);
}
finally
{
Expand Down

0 comments on commit 6de5f56

Please sign in to comment.