Reamer commented on a change in pull request #4150: URL: https://github.com/apache/zeppelin/pull/4150#discussion_r659318903
########## File path: zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/AbstractInterpreter.java ########## @@ -47,6 +51,35 @@ public InterpreterResult interpret(String st, return internalInterpret(st, context); } + static String interpolate(String cmd, ResourcePool resourcePool) { + Pattern zVariablePattern = Pattern.compile("([^{}]*)([{]+[^{}]*[}]+)(.*)", Pattern.DOTALL); Review comment: With `static` and `final` :grin: https://rules.sonarsource.com/java/tag/performance/RSPEC-4248 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org