Skip to content

Commit 145d207

Browse files
committed
fix tests
Signed-off-by: Stefan Niederhauser <[email protected]>
1 parent f832ea1 commit 145d207

File tree

1 file changed

+2
-1
lines changed
  • graphviz-java/src/main/java/guru/nidi/graphviz/engine

1 file changed

+2
-1
lines changed

graphviz-java/src/main/java/guru/nidi/graphviz/engine/Options.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@ static Image create(String path, String completePath) {
219219
out.write(readAsBytes(in));
220220
}
221221
final BufferedImage image = ImageIO.read(file);
222-
System.out.println("******************" + file + " " + uriPathOf(file) + " " + file.exists() + " " + image.getWidth());
222+
System.out.println("******************" + file + " " + uriPathOf(file)
223+
+ " " + file.exists() + " " + image.getWidth());
223224
return new Image(path, uriPathOf(file), image.getWidth(), image.getHeight());
224225
}
225226
final BufferedImage image = ImageIO.read(new File(completePath));

0 commit comments

Comments
 (0)