phrocker commented on a change in pull request #595: Add windows tests
URL: https://github.com/apache/nifi-minifi-cpp/pull/595#discussion_r295776793
 
 

 ##########
 File path: extensions/expression-language/ProcessContextExpr.cpp
 ##########
 @@ -15,22 +15,22 @@
  * limitations under the License.
  */
 
-#include <core/ProcessContext.h>
+#include "ProcessContextExpr.h"
 #include <memory>
 namespace org {
 namespace apache {
 namespace nifi {
 namespace minifi {
 namespace core {
 
-bool ProcessContext::getProperty(const Property &property, std::string &value, 
const std::shared_ptr<FlowFile> &flow_file) {
+bool ProcessContextExpr::getProperty(const Property &property, std::string 
&value, const std::shared_ptr<FlowFile> &flow_file) {
   if (!property.supportsExpressionLangauge()) {
-    return getProperty(property.getName(), value);
+    return ProcessContext::getProperty(property.getName(), value);
   }
   auto name = property.getName();
   if (expressions_.find(name) == expressions_.end()) {
     std::string expression_str;
-    getProperty(name, expression_str);
 
 Review comment:
   This extension does not appear to be linted. 

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to