Skip to content

Commit

Permalink
MiniMaven: fix displayed of how many files are compiled
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Oct 15, 2011
1 parent aa95406 commit 99227b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-plugins/fake/fiji/build/MiniMaven.java
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public void build() throws FakeException, IOException, ParserConfigurationExcept
count = arguments.size() - count;

if (count > 0) {
err.println("Compiling " + (arguments.size() - count) + " files in " + directory);
err.println("Compiling " + count + " files in " + directory);
String[] array = arguments.toArray(new String[arguments.size()]);
if (fake != null)
fake.callJavac(array, verbose);
Expand Down

0 comments on commit 99227b6

Please sign in to comment.