File tree Expand file tree Collapse file tree 4 files changed +3
-3
lines changed
org.modeldriven.alf.eclipse/lib Expand file tree Collapse file tree 4 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2424
2525public abstract class AlfBase {
2626
27- public static final String ALF_VERSION = "0.6.0d " ;
27+ public static final String ALF_VERSION = "0.6.0e " ;
2828
2929 protected boolean isVerbose = false ;
3030
Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ public static void loadErrorMessageFile() throws IOException {
3535 public static void loadErrorMessageFile (String path ) throws IOException {
3636 if (path == null ) {
3737 clearErrorMessages ();
38- } else if (path != errorMessageFileName ) {
38+ } else if (! path . equals ( errorMessageFileName ) ) {
3939 loadErrorMessageFile (Files .newInputStream (Paths .get (path )));
4040 errorMessageFileName = path ;
4141 }
4242 }
4343
44- private static void loadErrorMessageFile (InputStream inputStream ) throws IOException {
44+ public static void loadErrorMessageFile (InputStream inputStream ) throws IOException {
4545 BufferedReader reader = new BufferedReader (new InputStreamReader (
4646 inputStream , Charset .defaultCharset ()));
4747 clearErrorMessages ();
You can’t perform that action at this time.
0 commit comments