Skip to content

Commit

Permalink
Remove debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonUden committed Apr 2, 2018
1 parent 9966b8f commit 6657341
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/se/Zeeraa/slideshow/Slideshow.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ public boolean loadImages(File folder) {
if (folder.exists()) {
if (folder.isDirectory()) {
for (File f : folder.listFiles()) {
System.out.println(f.getAbsolutePath());
if (fileTypes.contains(getFileExtension(f))) {
System.out.println("Reading " + f.getAbsolutePath());
images.add(ImageIO.read(f));
Expand Down

0 comments on commit 6657341

Please sign in to comment.