Here you can find the source of removeImportClass(String className)
public static void removeImportClass(String className)
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { private static List importedClass; public static void removeImportClass(String className) { importedClass.remove(className); }/*from w ww .j a va 2 s . c o m*/ }