Remove unless #TODO as there is no need to lock database with PostgreSQL and other

transactional databases since we use a transaction.
This commit is contained in:
Sandro Cazzaniga 2013-03-07 12:29:59 +00:00
parent 38781620e0
commit 5e36b3bc0d

View File

@ -72,8 +72,6 @@ sub lock {
return 1;
}
else {
# TODO
return 1;
}
}
@ -92,8 +90,6 @@ sub isLocked {
return 0;
}
else {
# TODO
return 0;
}
}
@ -112,8 +108,6 @@ sub unlock {
return 1;
}
else {
# TODO
return 1;
}
}