File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
src/main/java/org/scijava/parse Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,6 @@ public class DefaultParseService extends AbstractService implements
5353 ParseService
5454{
5555
56- @ Override
57- public Items parse (final String arg ) {
58- return parse (arg , true );
59- }
60-
6156 @ Override
6257 public Items parse (final String arg , final boolean strict ) {
6358 if (arg == null ) throw new NullPointerException ("arg must not be null" );
Original file line number Diff line number Diff line change @@ -52,7 +52,9 @@ public interface ParseService extends SciJavaService {
5252 * @throws IllegalArgumentException If the string does not conform to expected
5353 * syntax.
5454 */
55- Items parse (String arg );
55+ default Items parse (final String arg ) {
56+ return parse (arg , true );
57+ }
5658
5759 /**
5860 * Parses a comma-delimited list of data elements.
You can’t perform that action at this time.
0 commit comments