src/main/java/org/apache/maven/xinclude/stax/XIncludeStreamReader.java [353:360]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        int idx = str.indexOf(',');
                        int min, max;
                        if (idx >= 0) {
                            min = idx == 0 ? 0 : Integer.parseInt(str.substring(0, idx));
                            max = idx == str.length() - 1 ? str.length() - 1 : Integer.parseInt(str.substring(idx + 1));
                        } else {
                            min = Integer.parseInt(str);
                            max = min;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/maven/xinclude/stax/XIncludeStreamReader.java [365:372]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        int idx = str.indexOf(',');
                        int min, max;
                        if (idx >= 0) {
                            min = idx == 0 ? 0 : Integer.parseInt(str.substring(0, idx));
                            max = idx == str.length() - 1 ? str.length() - 1 : Integer.parseInt(str.substring(idx + 1));
                        } else {
                            min = Integer.parseInt(str);
                            max = min;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



