mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 15:35:49 +01:00
Fix typo
This commit is contained in:
@@ -39,5 +39,5 @@ package sonia.scm.repository.client.api;
|
||||
*/
|
||||
public enum ClientCommand
|
||||
{
|
||||
ADD, REMOVE, COMMIT, PUSH, TAG, BANCH
|
||||
ADD, REMOVE, COMMIT, PUSH, TAG, BRANCH
|
||||
}
|
||||
|
||||
@@ -37,14 +37,13 @@ package sonia.scm.repository.client.spi;
|
||||
import sonia.scm.repository.client.api.ClientCommand;
|
||||
import sonia.scm.repository.client.api.ClientCommandNotSupportedException;
|
||||
|
||||
//~--- JDK imports ------------------------------------------------------------
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
//~--- JDK imports ------------------------------------------------------------
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Sebastian Sdorra
|
||||
@@ -93,7 +92,7 @@ public abstract class RepositoryClientProvider implements Closeable
|
||||
*/
|
||||
public BranchCommand getBranchCommand()
|
||||
{
|
||||
throw new ClientCommandNotSupportedException(ClientCommand.BANCH);
|
||||
throw new ClientCommandNotSupportedException(ClientCommand.BRANCH);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user