Fix reminders of dry run

This commit is contained in:
René Pfeuffer
2018-11-07 10:33:47 +01:00
parent 33642352ea
commit 62c20b071b
3 changed files with 2 additions and 15 deletions

View File

@@ -71,10 +71,5 @@ public enum Command
/** /**
* @since 2.0 * @since 2.0
*/ */
MERGE, MERGE
/**
* @since 2.0
*/
MERGE_DRY_RUN
} }

View File

@@ -259,12 +259,4 @@ public abstract class RepositoryServiceProvider implements Closeable
{ {
throw new CommandNotSupportedException(Command.MERGE); throw new CommandNotSupportedException(Command.MERGE);
} }
/**
* @since 2.0
*/
public MergeDryRunCommand getMergeDryRunCommand()
{
throw new CommandNotSupportedException(Command.MERGE_DRY_RUN);
}
} }

View File

@@ -64,7 +64,7 @@ public class GitRepositoryServiceProvider extends RepositoryServiceProvider
Command.OUTGOING, Command.OUTGOING,
Command.PUSH, Command.PUSH,
Command.PULL, Command.PULL,
Command.MERGE_DRY_RUN Command.MERGE
); );
//J+ //J+