Skip to content

Commit

Permalink
fix IDEA warnings "Unnecessary semicolon"
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev committed Sep 17, 2023
1 parent cb6cba1 commit bb8ebfc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private static void doBreakText(LayoutContext c,
right = previousPosition;
lastBreakPoint = bp;
bp = iterator.next();
};
}

// add hyphen if needed
if (bp != null && bp.getPosition() != BreakIterator.DONE // it fits
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1860,6 +1860,6 @@ public long calcWidth() {
public void setCalcWidth(long i) {
_calcWidth = i;
}
};
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,6 @@ public void reloadDocument(Document doc) {
XRLog.render("Reload called on BasicPanel, but there is no document set on the panel yet.");
return;
}
;
this.doc = doc;
setDocument(this.doc, getSharedContext().getBaseURL(), getSharedContext().getNamespaceHandler());
}
Expand Down

0 comments on commit bb8ebfc

Please sign in to comment.