Consider the following: ```groovy import java.sql.* import java.util.* import java.sql.Date Date date ``` Executing Organize Imports (Ctrl+Shift+O) removes `import java.sql.Date`, which is necessary to disambiguate the name `Date` within the compilation unit.
Consider the following:
Executing Organize Imports (Ctrl+Shift+O) removes
import java.sql.Date, which is necessary to disambiguate the nameDatewithin the compilation unit.