Skip to content

Commit b700de6

Browse files
committed
ScriptInfo: parse attributes in non-strict mode
This gets us one step closer to supporting things like: // @string(visibility=MESSAGE) text
1 parent 01fc1ff commit b700de6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/scijava/script/ScriptInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ private void parseParam(final String param,
378378

379379
/** Parses a comma-delimited list of {@code key=value} pairs into a map. */
380380
private Map<String, Object> parseAttrs(final String attrs) {
381-
return parser.parse(attrs).asMap();
381+
return parser.parse(attrs, false).asMap();
382382
}
383383

384384
private boolean isIOType(final String token) {

0 commit comments

Comments
 (0)