eclipse-jdtls/eclipse-jdt-core-incubator

handle trailing `;` when completing import

Closed this issue · 0 comments

eg. open completion at | and accept java.util.List

import java.util.Li|;

the result is currently:

import java.util.List;;

However, we also want to preserve:

import java.util.Li|

completing to

import java.util.List;