Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.io.InputStream;
import java.io.Serializable;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
Expand Down Expand Up @@ -242,7 +241,7 @@ public String getContentType() {

@Override
public boolean isEmpty() {
return (this.part.getSize() == 0);
return (getSize() == 0);
}

@Override
Expand All @@ -252,7 +251,7 @@ public long getSize() {

@Override
public byte[] getBytes() throws IOException {
return FileCopyUtils.copyToByteArray(this.part.getInputStream());
return FileCopyUtils.copyToByteArray(getInputStream());
}

@Override
Expand All @@ -270,14 +269,9 @@ public void transferTo(File dest) throws IOException, IllegalStateException {
// At least we offloaded the file from memory storage; it'll get deleted
// from the temp dir eventually in any case. And for our user's purposes,
// we can manually copy it to the requested location as a fallback.
FileCopyUtils.copy(this.part.getInputStream(), Files.newOutputStream(dest.toPath()));
FileCopyUtils.copy(getInputStream(), Files.newOutputStream(dest.toPath()));
}
}

@Override
public void transferTo(Path dest) throws IOException, IllegalStateException {
FileCopyUtils.copy(this.part.getInputStream(), Files.newOutputStream(dest));
}
}

}
Loading