Skip to content

Commit

Permalink
Fix small bug in sub-completion.
Browse files Browse the repository at this point in the history
  • Loading branch information
annitya committed Aug 7, 2017
1 parent c910d26 commit 47f13bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Completions/Entities/DefaultValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ List<LookupElement> getSubCompletionVariants()
enumerationSource = enumerationSource
.replace("/^", "")
.replace("$/i", "")
.replace("/i", "");
.replace("/i", "")
.replace("$/", "");

List<LookupElement> subCompletions = new ArrayList<>();

Expand Down

0 comments on commit 47f13bb

Please sign in to comment.