Skip to content

Commit

Permalink
MONDRIAN: When trying to load the VERSION.txt file to find out mondri…
Browse files Browse the repository at this point in the history
…an's version number, ignore the error if the file is not found.

[git-p4: depot-paths = "//open/mondrian/": change = 9741]
  • Loading branch information
julianhyde committed Aug 10, 2007
1 parent 747e14a commit 6a266de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/mondrian/olap/MondrianServerImpl.java
Expand Up @@ -183,7 +183,8 @@ private static String[] loadVersionFile() {
vendor = matcher.group(3);
}
} catch (IOException e) {
e.printStackTrace();
// ignore exception - it's OK if file is not found
Util.discard(e);
}
}

Expand Down

0 comments on commit 6a266de

Please sign in to comment.