Skip to content

Commit

Permalink
Removing org.luwrain.base
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Aug 15, 2021
1 parent c1d357e commit 0485c1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
import javafx.scene.input.KeyCode;
import javafx.scene.input.KeyEvent;

import org.luwrain.core.*;
import org.luwrain.core.events.InputEvent;
import org.luwrain.core.events.InputEvent.Special;
import org.luwrain.interaction.KeyboardHandler;
import org.luwrain.base.EventConsumer;

@SuppressWarnings({"deprecation","restriction"})
class KeyboardJavafxHandler implements KeyboardHandler
Expand Down
5 changes: 2 additions & 3 deletions src/main/java/org/luwrain/windows/Windows.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import java.io.IOException;
import java.nio.file.Path;

import org.luwrain.base.*;
import org.luwrain.core.*;
import org.luwrain.interaction.KeyboardHandler;

Expand All @@ -33,13 +32,13 @@ interface ChannelBasicData
String getType();
};

@Override public InitResult init(org.luwrain.base.PropertiesBase props)
@Override public InitResult init(PropertiesBase props)
{
NullCheck.notNull(props, "props");
return new InitResult();
}

@Override public org.luwrain.base.Braille getBraille()
@Override public Braille getBraille()
{
return null;
}
Expand Down

0 comments on commit 0485c1d

Please sign in to comment.