aplex commented on a change in pull request #3387:
URL: https://github.com/apache/gobblin/pull/3387#discussion_r705509148



##########
File path: 
gobblin-data-management/src/main/java/org/apache/gobblin/data/management/trash/TrashFactory.java
##########
@@ -59,19 +59,12 @@ public static Trash createTrash(FileSystem fs, Properties 
props) throws IOExcept
    */
   public static Trash createTrash(FileSystem fs, Properties props, String user)
       throws IOException {
-    if(props.containsKey(TRASH_TEST) && 
Boolean.parseBoolean(props.getProperty(TRASH_TEST))) {
-      LOG.info("Creating a test trash. Nothing will actually be deleted.");
-      return new TestTrash(fs, props, user);
-    }
-    if(props.containsKey(SIMULATE) && 
Boolean.parseBoolean(props.getProperty(SIMULATE))) {
-      LOG.info("Creating a simulate trash. Nothing will actually be deleted.");
-      return new MockTrash(fs, props, user);
-    }
-    if(props.containsKey(SKIP_TRASH) && 
Boolean.parseBoolean(props.getProperty(SKIP_TRASH))) {

Review comment:
       oh, I see. it was already checking it there.




-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to