Here you can find the source of removeFromSearchPath(String _path)
public static void removeFromSearchPath(String _path)
//package com.java2s; //License from project: Open Source License import java.util.List; public class Main { private static List<String> searchPaths; public static void removeFromSearchPath(String _path) { String path = _path.codePointAt(_path.length() - 1) != '/' ? _path + "/" : _path; if (searchPaths.contains(path)) searchPaths.remove(path);/* w ww.ja v a 2s.c om*/ } }