This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The Saros Eclipse Plugin". Pusher was franzzieris.

The branch, master has been updated
       via  65777ce47a226f1d7e83cacfa5e2ae1a04b9460e (commit)
       via  abce71b9b4b38ccb5de5bde9e5f759a8cae03de2 (commit)
       via  2c387f5b46e24adbbf60465c10b24499c8e5edca (commit)
       via  1930cdabbb04a3f001bc683077276450415a8e42 (commit)
       via  43313bc55b9156c39135cefbe7ad89ec6168a914 (commit)
      from  4ddd14326fd9bae08d0ff132fa092ff7f94b97c9 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 65777ce47a226f1d7e83cacfa5e2ae1a04b9460e
Author: Tobias Bouschen <tobias.bousc...@googlemail.com>
Date:   Tue Apr 11 16:36:36 2017 +0200

    [INTERNAL][I] remove IntelliJProjectImpl#create() and its usage
    
    IntellijProjectImpl#create() was used to create all non existing project
    that are shown in the list of projects on the receiving side of an
    invitation. It should be impossible for a project that was selected from
    the local project structure to be non-existent, which makes this
    functionality superfluous.
    
    Change-Id: Icb7816708eff93ee02f808587ffb3b76b9149b58
    Reviewed-on: http://saros-build.imp.fu-berlin.de/gerrit/3297
    Tested-by: Jenkins CI
    Reviewed-by: Stefan Rossbach <srossb...@arcor.de>

commit abce71b9b4b38ccb5de5bde9e5f759a8cae03de2
Author: Stefan Rossbach <srossb...@arcor.de>
Date:   Wed Apr 12 12:46:27 2017 +0200

    [INTERNAL] moves if check in SarosSession#ipdatePartialSharedResources
    
    Occured multiple time.
    
    Change-Id: Ifda187b28da45eba60868d3cd58d591d108fdd2d
    Reviewed-on: http://saros-build.imp.fu-berlin.de/gerrit/3299
    Tested-by: Jenkins CI
    Reviewed-by: Stefan Rossbach <srossb...@arcor.de>

commit 2c387f5b46e24adbbf60465c10b24499c8e5edca
Author: Stefan Rossbach <srossb...@arcor.de>
Date:   Wed Apr 12 12:29:00 2017 +0200

    [INTERNAL] fixes bug introduce with patch #3012
    
    Change-Id: If542b0a699c27dba984d072874a8fdd18ff88b22
    Reviewed-on: http://saros-build.imp.fu-berlin.de/gerrit/3298
    Tested-by: Jenkins CI
    Reviewed-by: Stefan Rossbach <srossb...@arcor.de>

commit 1930cdabbb04a3f001bc683077276450415a8e42
Author: Tobias Bouschen <tobias.bousc...@googlemail.com>
Date:   Tue Apr 11 15:46:40 2017 +0200

    [API] remove IResource#refreshLocal()
    
    Removes method IResource#refreshLocal() as it is only used in the
    IntelliJ implementation, where all actions related to the filesystem
    should be done through the IntelliJ VFS. This removes the need for a
    manual refresh as this should be handled by IntelliJ in the background.
    
    Change-Id: Ie828a042c30f744be9449e70f7bb7fad7ed31182
    Reviewed-on: http://saros-build.imp.fu-berlin.de/gerrit/3296
    Tested-by: Jenkins CI
    Reviewed-by: Stefan Rossbach <srossb...@arcor.de>

commit 43313bc55b9156c39135cefbe7ad89ec6168a914
Author: Tobias Bouschen <tobias.bousc...@googlemail.com>
Date:   Mon Apr 10 19:55:14 2017 +0200

    [API] removes IResourceAttributes and its usage
    
    IResourceAttributes is only used in the Intellij implementation
    (FileUtils), where it can easily be replaced through operations using
    java.io.File.
    
    Following the removal, the methods IResource#getResourceAttributes() and
    #setResourceAtributes(...) as well as their implementations and tests
    are removed.
    
    Change-Id: I36f088fc1d5226d41c52482a334dc10f920388d8
    Reviewed-on: http://saros-build.imp.fu-berlin.de/gerrit/3290
    Tested-by: Jenkins CI
    Reviewed-by: Stefan Rossbach <srossb...@arcor.de>

-----------------------------------------------------------------------

Summary of changes:
 .../de/fu_berlin/inf/dpp/filesystem/IResource.java | 11 ---
 .../inf/dpp/filesystem/IResourceAttributes.java    | 33 ---------
 .../inf/dpp/session/internal/SarosSession.java     | 49 +++++++-------
 .../de/fu_berlin/inf/dpp/core/util/FileUtils.java  | 79 ++++++++++++----------
 .../project/filesystem/IntelliJFileImpl.java       |  5 --
 .../IntelliJFileResourceAttributesImpl.java        | 25 -------
 .../project/filesystem/IntelliJFolderImpl.java     |  5 --
 .../project/filesystem/IntelliJProjectImpl.java    | 29 --------
 .../filesystem/IntelliJResourceAttributesImpl.java | 24 -------
 .../project/filesystem/IntelliJResourceImpl.java   | 13 ----
 .../filesystem/IntelliJWorkspaceRootImpl.java      | 17 -----
 .../inf/dpp/intellij/ui/tree/ContactPopMenu.java   | 19 ++----
 .../ui/wizards/AddProjectToSessionWizard.java      | 24 -------
 .../filesystem/IntelliJResourceImplTest.java       |  5 --
 .../filesystem/ServerResourceAttributesImpl.java   | 21 ------
 .../dpp/server/filesystem/ServerResourceImpl.java  | 33 ---------
 .../server/filesystem/ServerResourceImplTest.java  | 40 -----------
 .../filesystem/EclipseResourceAttributesImpl.java  | 33 ---------
 .../inf/dpp/filesystem/EclipseResourceImpl.java    | 35 ----------
 19 files changed, 76 insertions(+), 424 deletions(-)
 delete mode 100644 
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/filesystem/IResourceAttributes.java
 delete mode 100644 
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/filesystem/IntelliJFileResourceAttributesImpl.java
 delete mode 100644 
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/filesystem/IntelliJResourceAttributesImpl.java
 delete mode 100644 
de.fu_berlin.inf.dpp.server/src/de/fu_berlin/inf/dpp/server/filesystem/ServerResourceAttributesImpl.java
 delete mode 100644 
de.fu_berlin.inf.dpp/src/de/fu_berlin/inf/dpp/filesystem/EclipseResourceAttributesImpl.java


hooks/post-receive
-- 
The Saros Eclipse Plugin

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
DPP-Robot mailing list
DPP-Robot@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dpp-robot

Reply via email to