mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 04:28:17 +00:00
Removed print statements.
This commit is contained in:
parent
c42db9eb8b
commit
a654529090
2 changed files with 0 additions and 3 deletions
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue