In a utility class we have the declaration/assignment:

public static final Pattern justWhitespace = Pattern.compile("^\\s*$");

and when this is being used it is returning null.
There were...