Package org.syncany.operations.down.actions

Examples of org.syncany.operations.down.actions.DeleteFileSystemAction


 
  private DeleteFileSystemAction createDeleteFileSystemAction(String path, FileType type) throws Exception {
    FileVersion firstFileVersion = createFileVersion(path, type);
    FileVersion secondFileVersion = createFileVersion(path, type, firstFileVersion);
   
    return new DeleteFileSystemAction(createDummyConfig(), firstFileVersion, secondFileVersion, null);
 
View Full Code Here


      logger.log(Level.INFO, "     -> "+action);
     
      changeSet.getChangedFiles().add(winningLastVersion.getPath());
    }
    else if (winningVersionToLocalVersionComparison.getFileChanges().contains(FileChange.NEW)) {
      FileSystemAction action = new DeleteFileSystemAction(config, localLastVersion, winningLastVersion, winnersDatabase);
      fileSystemActions.add(action);
     
      logger.log(Level.INFO, "     -> (10) Local file is exists, but should not: local file = "+localLastFile+", local version = "+localLastVersion+", winning version = "+winningLastVersion);         
      logger.log(Level.INFO, "     -> "+action)
     
View Full Code Here

TOP

Related Classes of org.syncany.operations.down.actions.DeleteFileSystemAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.