Skip to content

Commit

Permalink
Fixing ConcurrentModificationException in some instances in Java lang…
Browse files Browse the repository at this point in the history
…uage support
  • Loading branch information
bobbylight committed Mar 8, 2014
1 parent 51f2d88 commit 544f2e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/fife/rsta/ac/java/SourceCompletionProvider.java
Original file line number Diff line number Diff line change
@@ -514,7 +514,7 @@ protected List<Completion> getCompletionsImpl(JTextComponent comp) {

try {

completions.clear();
completions = new ArrayList<Completion>();//completions.clear();

CompilationUnit cu = javaProvider.getCompilationUnit();
if (cu==null) {

0 comments on commit 544f2e0

Please sign in to comment.