| Index: src/org/adblockplus/sbrowser/contentblocker/engine/Subscriptions.java |
| =================================================================== |
| --- a/src/org/adblockplus/sbrowser/contentblocker/engine/Subscriptions.java |
| +++ b/src/org/adblockplus/sbrowser/contentblocker/engine/Subscriptions.java |
| @@ -58,17 +58,16 @@ final class Subscriptions |
| public boolean wasUnitialized() |
| { |
| return this.wasUnitialized; |
| } |
| public File createAndWriteFile() throws IOException |
| { |
| - // TODO cache cleanups |
| for (;;) |
| { |
| final File file = new File(this.cacheFolder, String.format("tmp-%d.txt", |
| (int) (Math.random() * 1e8))); |
| if (!file.exists()) |
| { |
| Log.d(TAG, "Writing filters to " + file); |
| this.writeFile(file); |