Skip to content

Commit

Permalink
Quickfix to get build running on all platforms (#3638)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusDietz authored and Siedlerchr committed Jan 16, 2018
1 parent b00f907 commit 57f954d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected Node createWarningNode() {
return IconTheme.JabRefIcon.WARNING.getGraphicNode();
}

private Node createDecorationNode(ValidationMessage message) {
public Node createDecorationNode(ValidationMessage message) {
Node graphic = Severity.ERROR == message.getSeverity() ? createErrorNode() : createWarningNode();
graphic.getStyleClass().add(Severity.ERROR == message.getSeverity() ? "error-icon" : "warning-icon");
Label label = new Label();
Expand Down

0 comments on commit 57f954d

Please sign in to comment.