sebwrede commented on a change in pull request #946: URL: https://github.com/apache/systemml/pull/946#discussion_r445388137
########## File path: src/main/java/org/apache/sysds/runtime/controlprogram/federated/FederatedRequest.java ########## @@ -74,4 +80,16 @@ public int getNumParams() { public FederatedRequest deepClone() { return new FederatedRequest(_method, new ArrayList<>(_data)); } + + public void setCheckPrivacy(boolean checkPrivacy){ + this.checkPrivacy = checkPrivacy; + } + + public void setCheckPrivacy(){ + setCheckPrivacy(DMLScript.CHECK_PRIVACY); + } + + public boolean checkPrivacy(){ + return checkPrivacy; + } Review comment: The name is phrased like a question: "Should I check privacy? Yes or no." ---------------------------------------------------------------- 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