Skip to content

Commit

Permalink
Woops, execute correct typo in execute fn for metaschema-framework#132
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-stein-gsa committed Oct 8, 2024
1 parent 42905c9 commit 89fc5f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private static ISequence<IStringItem> execute(
IStringItem sourceString = FunctionUtils.asType(ObjectUtils.requireNonNull(arguments.get(0).getFirstItem(true)));
IIntegerItem start = FunctionUtils.asType(ObjectUtils.requireNonNull(arguments.get(1).getFirstItem(true)));
IIntegerItem length = FunctionUtils.asType(ObjectUtils.requireNonNull(arguments.get(2).getFirstItem(true)));
return ISequence.of(su1bstring(sourceString, start, length));
return ISequence.of(substring(sourceString, start, length));
}

/**
Expand Down

0 comments on commit 89fc5f1

Please sign in to comment.