blob: 4dcfa45928349b795d663b42e23ec18e3566f9bb [file] [log] [blame]
import org.checkerframework.checker.index.qual.NonNegative;
public class NonNegativeCharValue {
public static String toString(final @NonNegative Character ch) {
return toString(ch.charValue());
}
}