I have this:
public static class RaceParam {
boolean keep = null; // does not compile
}
that won't compile because you can't assign null to a primitive. So that begs the question, what value does keep get when we do this:
public static class RaceParam {
boolean keep;
}
does it default to false or true? Seems dangerous to default to something.