Java tutorial
//package com.java2s; import java.util.HashSet; public class Main { @SuppressWarnings("rawtypes") public static HashSet filterHashSet(HashSet target) { if (null == target) { target = new HashSet(); } return target; } }