Skip to content

Commit

Permalink
Remove operationInfo annotation in StringOperationContributor
Browse files Browse the repository at this point in the history
  • Loading branch information
pkourouklidis committed Oct 16, 2024
1 parent e3ce708 commit a1cf24b
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ public String firstToUpperCase() {
return value.substring(0,1).toUpperCase() + value.substring(1, value.length());
}

@OperationInfo
public String characterAt(int index) {
String value = (String) getTarget();
return value.charAt(index) + "";
Expand Down

0 comments on commit a1cf24b

Please sign in to comment.