Commit 42489c13 authored by Kammleiter's avatar Kammleiter
Browse files

corrected boolean check

parent a55a01d0
......@@ -74,7 +74,7 @@ public class GitTeaUtil {
} catch (ApiException e) {
LOG.error("Error while deleting repository:" + e.getMessage());
}
return repository == null;
return repository != null;
}
private void setupAuth() {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment