Java String Remove removeWaitStatus(String nodeInfo)

Here you can find the source of removeWaitStatus(String nodeInfo)

Description

remove Wait Status

License

GNU General Public License

Declaration

public static void removeWaitStatus(String nodeInfo) 

Method Source Code

//package com.java2s;
/**//from  ww  w . jav  a  2s.co  m
 * ?????????????????????????.<br>
 *
 * @author T.Okuyama
 * @license GPL(Lv3)
 */

import java.util.*;

public class Main {
    private static HashMap nodeStatusMap = new HashMap();
    private static Object nodeSync = new Object();

    public static void removeWaitStatus(String nodeInfo) {
        synchronized (nodeSync) {
            nodeStatusMap.remove(nodeInfo);
        }
    }
}

Related

  1. removeSomeOne(String words, int count)
  2. removeSpaces(String orig)
  3. removeSpecialChars(final String word)
  4. removeSpecialCharsForSQLRegExp(String _s)
  5. removeUnusedData(String songData)
  6. removeWhitespace(String inputString)
  7. splitLine(String s, boolean removeNewLine)
  8. trimIndent(String line, int indentsToRemove, int tabWidth, int indentWidth)