Skip to content

Commit

Permalink
Fix constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway committed Apr 8, 2024
1 parent 8359cfb commit c2f75cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/ij/plugin/Macro_Runner.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
public class Macro_Runner implements PlugIn {
private static String filePath;
private static boolean returnError = false;
public Macro_Runner() {
}

public Macro_Runner(boolean returnError) {
this();
this.returnError = returnError;
}

Expand Down

0 comments on commit c2f75cd

Please sign in to comment.