Skip to content

Commit 811346f

Browse files
committed
Merge pull request #339 from JLLeitschuh/fix/cvOperationNames
Adds "CV " to begining of all generated CV operations
2 parents 936cef3 + 85c802e commit 811346f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/java/edu/wpi/gripgenerator/templates/Operation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private MethodDeclaration getNameMethod() {
9696
);
9797
BlockStmt methodBody = new BlockStmt(
9898
Collections.singletonList(new ReturnStmt(
99-
new StringLiteralExpr(definedMethod.getMethodName())))
99+
new StringLiteralExpr("CV " + definedMethod.getMethodName())))
100100
);
101101
getName.setBody(methodBody);
102102
return getName;

0 commit comments

Comments
 (0)