Skip to content

Commit

Permalink
Update pom to use sun.activation
Browse files Browse the repository at this point in the history
  • Loading branch information
urmi-21 committed Feb 20, 2020
1 parent 149c623 commit 6fe666e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,10 @@
<artifactId>javax.mail-api</artifactId>
<version>1.6.0</version>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>javax.activation</artifactId>
<version>1.2.0</version>
</dependency>
</dependencies>
</project>
2 changes: 2 additions & 0 deletions releasenotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ MOG 1.8.1 Release date: TBD
Convert to maven project
Remove unwanted packages
Removed arrayexpress projects
Fix bug; showed incorrect number of metadata file rows.
Make OpenJDK compatible
Refactor

MOG 1.8.0 Release date: 10/28/2019
Expand Down
6 changes: 4 additions & 2 deletions src/edu/iastate/metnet/metaomgraph/MetaOmGraph.java
Original file line number Diff line number Diff line change
Expand Up @@ -726,10 +726,12 @@ public static void init(boolean useBuffer) {
initThemes();
setCurrentTheme("light");
mainWindow = new JFrame("MetaOmGraph");


//urmi
///////////////enable debug mode//////////////////
ExceptionHandler.getInstance(mainWindow).setUseBuffer(useBuffer);
// set setUseBuffer(false) to print to console
// ExceptionHandler.getInstance(mainWindow).setUseBuffer(false);
//ExceptionHandler.getInstance(mainWindow).setUseBuffer(false);
Thread.setDefaultUncaughtExceptionHandler(ExceptionHandler.getInstance(mainWindow));
desktop = new JDesktopPane();
desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
Expand Down

0 comments on commit 6fe666e

Please sign in to comment.