Browse Source

test integration fix

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1793733 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_17_BETA1
Andreas Beeker 7 years ago
parent
commit
3c69708b20
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java

+ 3
- 1
src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java View File

@@ -401,11 +401,13 @@ public class CopyCompare
final String name,
final DocumentInputStream stream)
throws IOException {
// create the directories to the document
final DirectoryEntry de = getPath(poiFs, path);
// check the parameters after the directories have been created
if (stream == null || name == null) {
// Empty directory
return;
}
final DirectoryEntry de = getPath(poiFs, path);
final ByteArrayOutputStream out = new ByteArrayOutputStream();
int c;
while ((c = stream.read()) != -1) {

Loading…
Cancel
Save