Skip to content

Commit

Permalink
bugfix: Fix type issue after last two PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Aug 4, 2023
1 parent b220df9 commit 84cd82f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class JavaCompletionProvider(
case dt: DeclaredType => completeDeclaredType(task, dt)
case _: ArrayType => completeArrayType()
case tv: TypeVariable => completeTypeVariable(task, tv)
case _ => new CompletionList()
case _ => Nil
}
}

Expand Down

0 comments on commit 84cd82f

Please sign in to comment.