aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThialfihar <thialfihar@gmail.com>2010-06-17 13:24:30 +0000
committerThialfihar <thialfihar@gmail.com>2010-06-17 13:24:30 +0000
commit8d0160ba12845b067df850c37485b777f2f44b28 (patch)
treeb8d8c74fac3b402fc2a4f4fe9a562d07637cd37a /src
parent1bad192a91364fe48ae38ddcf6fb436a40a82283 (diff)
downloadopen-keychain-8d0160ba12845b067df850c37485b777f2f44b28.tar.gz
open-keychain-8d0160ba12845b067df850c37485b777f2f44b28.tar.bz2
open-keychain-8d0160ba12845b067df850c37485b777f2f44b28.zip
removed an outdated TODO comment
Diffstat (limited to 'src')
-rw-r--r--src/org/thialfihar/android/apg/Service.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/org/thialfihar/android/apg/Service.java b/src/org/thialfihar/android/apg/Service.java
index 4457274ff..6105473db 100644
--- a/src/org/thialfihar/android/apg/Service.java
+++ b/src/org/thialfihar/android/apg/Service.java
@@ -14,9 +14,6 @@ public class Service extends android.app.Service {
private Handler mCacheHandler = new Handler();
private Runnable mCacheTask = new Runnable() {
public void run() {
- // TODO: I suppose we could read out the time left until the first cache entry
- // expiration, then use that for the timer...
-
// check every ttl/2 seconds, which shouldn't be heavy on the device (even if ttl = 15),
// and makes sure the longest a pass phrase survives in the cache is 1.5 * ttl
int delay = mPassPhraseCacheTtl * 1000 / 2;