Removed print statements.

This commit is contained in:
Winston Li 2014-11-20 11:25:00 +00:00
parent c42db9eb8b
commit a654529090
2 changed files with 0 additions and 3 deletions

View file

@ -31,7 +31,6 @@ public class WLRepositoryResolver implements RepositoryResolver<HttpServletReque
try {
return repositorySource.getRepositoryWithNameAtRootDirectory(name, rootGitDirectory);
} catch (RepositoryNotFoundException e) {
e.printStackTrace();
throw e;
} catch (ServiceNotEnabledException e) {
e.printStackTrace();

View file

@ -17,12 +17,10 @@ public class ProjectLock {
}
public void lockForProject(String projectName) {
System.out.println("Locking for: " + Thread.currentThread().getId());
getLockForProjectName(projectName).lock();
}
public void unlockForProject(String projectName) {
System.out.println("Unlocking for: " + Thread.currentThread().getId());
getLockForProjectName(projectName).unlock();
}