Here you can find the source of removeProperty(String name)
public static void removeProperty(String name)
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { static HashMap<String, String> _globals = new HashMap<String, String>(); public static void removeProperty(String name) { _globals.remove(name);/*ww w. j a v a 2 s. c o m*/ } public static void remove(String name) { _globals.remove(name); } }