mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-21 06:52:11 +01:00
fix wrong return type
This commit is contained in:
@@ -65,7 +65,7 @@ public final class PushCommandBuilder
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public AbstractPushOrPullResponse push(Repository remoteRepository)
|
||||
public PushResponse push(Repository remoteRepository)
|
||||
{
|
||||
request.setRemoteRepository(remoteRepository);
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ package sonia.scm.repository.spi;
|
||||
|
||||
//~--- non-JDK imports --------------------------------------------------------
|
||||
|
||||
import sonia.scm.repository.api.AbstractPushOrPullResponse;
|
||||
import sonia.scm.repository.api.PushResponse;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -51,5 +51,5 @@ public interface PushCommand
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public AbstractPushOrPullResponse push(PushCommandRequest request);
|
||||
public PushResponse push(PushCommandRequest request);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user