/**
  * @param map Map to get string for.
  * @return Full map string representation.
  */
 @SuppressWarnings({"ConstantConditions"})
 private String mapString(GridDhtPartitionMap map) {
   return map == null ? "null" : FULL_MAP_DEBUG ? map.toFullString() : map.toString();
 }