Skip to content

Commit

Permalink
Remove redundant String.toString call
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Feb 5, 2022
1 parent 4b9d2a5 commit 9ecf66e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,6 @@ public void checkCanExecuteFunction(SecurityContext context, String functionName
@Override
public void checkCanExecuteTableProcedure(SecurityContext context, QualifiedObjectName tableName, String procedureName)
{
denyExecuteTableProcedure(tableName.toString(), procedureName.toString());
denyExecuteTableProcedure(tableName.toString(), procedureName);
}
}

0 comments on commit 9ecf66e

Please sign in to comment.