Here you can find the source of removePropertyNameModifier(String name)
public static void removePropertyNameModifier(String name)
//package com.java2s; /*// ww w . j a v a2s . com * @(#)ResourceBundleUtil.java * * Copyright (c) 1996-2010 by the original authors of JHotDraw and all its * contributors. All rights reserved. * * You may not use, copy or modify this file, except in compliance with the * license agreement you entered into with the copyright holders. For details * see accompanying license terms. */ import java.util.*; public class Main { /** * The global map of property name modifiers. * The key of this map is the name of the property name modifier, * the value of this map is a fallback chain. */ private static HashMap<String, String[]> propertyNameModifiers = new HashMap<String, String[]>(); /** * Removes a property name modifier. */ public static void removePropertyNameModifier(String name) { propertyNameModifiers.remove(name); } }