src/main/java/org/apache/sdap/ningester/processors/AddDayOfYearAttribute.java [52:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Matcher granuleNameMatcher = this.regex.matcher(granuleName);
        Boolean granuleNameMatched = granuleNameMatcher.find();

        if (!granuleNameMatched) {
            throw new RuntimeException("regex did not match granuleName.");
        }

        if (granuleNameMatcher.groupCount() != 1) {
            throw new RuntimeException("regex does not have exactly one capturing group.");
        }

        if (granuleNameMatcher.group(1).length() <= 0) {
            throw new RuntimeException("group does not contain match.");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sdap/ningester/processors/AddTimeFromGranuleName.java [51:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                Matcher granuleNameMatcher = this.regex.matcher(granuleName);
                Boolean granuleNameMatched = granuleNameMatcher.find();

                if (!granuleNameMatched) {
                    throw new RuntimeException("regex did not match granuleName.");
                }

                if (granuleNameMatcher.groupCount() != 1) {
                    throw new RuntimeException("regex does not have exactly one capturing group.");
                }

                if (granuleNameMatcher.group(1).length() <= 0) {
                    throw new RuntimeException("group does not contain match.");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



