Skip to content

Commit

Permalink
Merge pull request #93 from jnagels/fix_diskcache
Browse files Browse the repository at this point in the history
Start the created Thread-objects
  • Loading branch information
moagrius committed Mar 7, 2014
2 parents 16854d4 + 0d15576 commit da686e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/com/qozix/tileview/tiles/TileCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void run(){

}
}
});
}).start();
}

public void addBitmap( String key, Bitmap bitmap ) {
Expand Down Expand Up @@ -94,7 +94,7 @@ public void run(){

}
}
});
}).start();
}

public void clear() {
Expand All @@ -108,7 +108,7 @@ public void run(){

}
}
});
}).start();
}

private void addBitmapToMemoryCache( String key, Bitmap bitmap ) {
Expand Down

0 comments on commit da686e5

Please sign in to comment.