Skip to content

Commit

Permalink
fix "static" problem markers
Browse files Browse the repository at this point in the history
  • Loading branch information
EcljpseB0T authored and jukzi committed Jan 25, 2024
1 parent b3346e8 commit e340eca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ protected void markInvalidAnnotationsForDeletion(DirtyRegion dirtyRegion, List<F
}
}

protected List<FoldingAnnotation> getAllAnnotationsForDeletion(Iterator<Annotation> iter) {
private static List<FoldingAnnotation> getAllAnnotationsForDeletion(Iterator<Annotation> iter) {
List<FoldingAnnotation> deletions = new ArrayList<>();
if (iter != null) {
while (iter.hasNext()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private void createColumnFor(TreeViewer v, String label, int columnIndex) {
viewerColumn.setLabelProvider(new MyColumnLabelProvider(v.getTree(), columnIndex));
}

private List<MyModel> createModel() {
private static List<MyModel> createModel() {
List<MyModel> elements = new ArrayList<>();

for (int i = 0; i < 10; i++) {
Expand Down

0 comments on commit e340eca

Please sign in to comment.