Skip to content

Commit

Permalink
Revert "Fix NullPointerException in jasmin.Main.<clinit>"
Browse files Browse the repository at this point in the history
This reverts commit 0349695.
  • Loading branch information
mbenz89 committed Aug 8, 2019
1 parent 1a5e481 commit e822e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jasmin/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static void assemble(InputStream in, OutputStream out, boolean number_lin
/**
* The Jasmin version
*/
public final static String version = Main.class.getPackage() == null || Main.class.getPackage().getImplementationVersion() == null ? "trunk" : Main.class.getPackage().getImplementationVersion();
public final static String version = Main.class.getPackage().getImplementationVersion() == null ? "trunk" : Main.class.getPackage().getImplementationVersion();

/**
* Called to assemble a single file.
Expand Down

0 comments on commit e822e6a

Please sign in to comment.