Skip to content

Commit

Permalink
minor API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
miho committed Feb 17, 2020
1 parent 7271892 commit 0a6957c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/eu/mihosoft/monacofx/Document.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ public String getText() {
return textProperty().get();
}

ReadOnlyIntegerProperty numberOfLinesProperty() {
public ReadOnlyIntegerProperty numberOfLinesProperty() {
return numberOfLinesProperty;
}

StringProperty languageProperty() {
public StringProperty languageProperty() {
return languageProperty;
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/eu/mihosoft/monacofx/MonacoFX.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public MonacoFX() {
);
}

Editor getEditor() {
public Editor getEditor() {
return editor;
}

Expand Down

0 comments on commit 0a6957c

Please sign in to comment.