Skip to content

Commit de5c913

Browse files
committed
Work around a typo in the orange-extensions
See: ymasory/OrangeExtensions#10
1 parent 8d2d7f5 commit de5c913

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/main/java/org/scijava/plugins/platforms/macosx/MacOSXAppEventDispatcher.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,16 @@ public void systemAboutToSleep(final SystemSleepEvent e) {
145145
eventService.publish(new AppSystemSleepEvent(true));
146146
}
147147

148-
@Override
148+
//@Override
149149
public void systemAwoke(final SystemSleepEvent e) {
150150
eventService.publish(new AppSystemSleepEvent(false));
151151
}
152152

153+
public void systemAweoke(final SystemSleepEvent e) {
154+
// HACK: To make com.yuvimasory:orange-extensions:1.3 happy.
155+
// See: https://github.com/ymasory/OrangeExtensions/pull/10
156+
}
157+
153158
// -- ScreenSleepListener methods --
154159

155160
@Override

0 commit comments

Comments
 (0)