Skip to content

Commit

Permalink
Replacing EnvironmentEvent with SystemEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Jul 17, 2020
1 parent 617491b commit 0bd9c2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
The LUWRAIN project
Please visit http:https://luwrain.org/doc/authors/ to get the complete list of our developers
The LUWRAIN Project, please visit http:https://luwrain.org/doc/authors/ to get a complete list of our developers
4 changes: 2 additions & 2 deletions src/main/java/org/luwrain/app/viewer/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ private void createArea()
}
return super.onInputEvent(event);
}
@Override public boolean onSystemEvent(EnvironmentEvent event)
@Override public boolean onSystemEvent(SystemEvent event)
{
NullCheck.notNull(event, "event");
if (event.getType() != EnvironmentEvent.Type.REGULAR)
if (event.getType() != SystemEvent.Type.REGULAR)
return super.onSystemEvent(event);
switch(event.getCode())
{
Expand Down

0 comments on commit 0bd9c2a

Please sign in to comment.