Skip to content

Commit

Permalink
Fiji Build: really reuse MiniMaven instances
Browse files Browse the repository at this point in the history
The thinko in a86b5fa(Fiji Build: reuse MiniMaven instances) was that I
thought the SubFake instances were reused, but they are not.

A cleaner solution might be to hold the MiniMaven instance in the class
fiji.build.Fake. But in reality, I would like to get rid of Fiji Build
altogether in favor of MiniMaven, even getting rid of the submodules.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Jul 6, 2012
1 parent f993edb commit 2f6ea69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-plugins/fake/src/main/java/fiji/build/SubFake.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public File getFakefile() {
return file.exists() ? file : null;
}

protected MiniMaven miniMaven;
protected static MiniMaven miniMaven;

public POM getPOM() {
if (pomRead)
Expand Down

0 comments on commit 2f6ea69

Please sign in to comment.