This commit is contained in:
René Pfeuffer
2020-08-07 10:53:08 +02:00
parent fa560f9913
commit a3a26c057e
3 changed files with 0 additions and 8 deletions

View File

@@ -55,8 +55,6 @@ public class GitDeleteRemoteBranchCommand implements DeleteRemoteBranchCommand {
push.setCredentialsProvider(credentialsProvider);
}
push.setRefSpecs(refSpec).call();
// List<String> result = git.branchDelete().setBranchNames(name).call();
} catch (GitAPIException ex) {
throw new RepositoryClientException("could not delete branch", ex);
}

View File

@@ -39,8 +39,6 @@
<dependencies>
<!-- servlet api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>

View File

@@ -48,11 +48,7 @@ import static de.otto.edison.hal.Links.linkingTo;
/**
* Web Service Resource to support integration tests.
*/
@OpenAPIDefinition(tags = {
@Tag(name = "Integration Test", description = "Support for integration tests")
})
@Path(IntegrationTestResource.INTEGRATION_TEST_PATH_V2)
@Extension
public class IntegrationTestResource {
static final String INTEGRATION_TEST_PATH_V2 = "v2/integration-test";