Fix instantiation of logger in the DeleteBranch class

The wrong class was provided to the logger.

Change-Id: I5b4bb6dfbcc2c8b0614910940be721f30410aa0c
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2013-09-16 17:01:37 +02:00
parent 0a1bbae9ac
commit 93e165ccc7

View File

@@ -36,7 +36,7 @@ import org.slf4j.LoggerFactory;
import java.io.IOException;
public class DeleteBranch implements RestModifyView<BranchResource, Input>{
private static final Logger log = LoggerFactory.getLogger(CreateBranch.class);
private static final Logger log = LoggerFactory.getLogger(DeleteBranch.class);
static class Input {
}