Temporarily disable locking in getdown
This commit is contained in:
@@ -1032,6 +1032,7 @@ public class Application
|
||||
*/
|
||||
public synchronized boolean lockForUpdates ()
|
||||
{
|
||||
/* TEMP disable locking
|
||||
if (_lock != null && _lock.isValid()) {
|
||||
return true;
|
||||
}
|
||||
@@ -1049,6 +1050,8 @@ public class Application
|
||||
Log.logStackTrace(e);
|
||||
}
|
||||
return _lock != null;
|
||||
*/
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1056,6 +1059,7 @@ public class Application
|
||||
*/
|
||||
public synchronized void releaseLock ()
|
||||
{
|
||||
/* TEMP disable locking
|
||||
if (_lock != null) {
|
||||
try {
|
||||
_lock.release();
|
||||
@@ -1072,6 +1076,7 @@ public class Application
|
||||
_lockChannel = null;
|
||||
_lock = null;
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user