Hide getEffectedPaths for other packages

This commit is contained in:
René Pfeuffer
2020-05-15 14:33:04 +02:00
parent 74b959e451
commit c722565109
15 changed files with 299 additions and 110 deletions

View File

@@ -145,14 +145,14 @@ public final class SvnUtil
switch (type)
{
case SVNLogEntryPath.TYPE_ADDED :
return Optional.of(new Modification.Added(path));
return Optional.of(new Added(path));
case SVNLogEntryPath.TYPE_DELETED :
return Optional.of(new Modification.Removed(path));
return Optional.of(new Removed(path));
case TYPE_UPDATED :
case SVNLogEntryPath.TYPE_MODIFIED :
return Optional.of(new Modification.Modified(path));
return Optional.of(new Modified(path));
default :
logger.debug("unknown modification type {}", type);