1
0
Fork 0
mirror of https://github.com/M66B/NetGuard.git synced 2024-12-27 02:09:41 +00:00

Removed to do's

This commit is contained in:
M66B 2016-02-23 08:03:53 +01:00
parent 63ac3edcf4
commit 08034a2c0e
3 changed files with 2 additions and 4 deletions

View file

@ -46,7 +46,6 @@ model {
minifyEnabled true minifyEnabled true
useProguard = true useProguard = true
proguardFiles.add(file('proguard-rules.pro')) proguardFiles.add(file('proguard-rules.pro'))
// TODO remove on stable release
ndk { ndk {
debuggable true debuggable true
} }

View file

@ -500,7 +500,6 @@ public class DatabaseHelper extends SQLiteOpenHelper {
return (rows == 0); return (rows == 0);
} }
// TODO optimize with raw SQL
public void updateUsage(Usage usage, String dname) { public void updateUsage(Usage usage, String dname) {
mLock.writeLock().lock(); mLock.writeLock().lock();
try { try {

View file

@ -24,9 +24,9 @@ public class Packet {
public int version; public int version;
public int protocol; public int protocol;
public String flags; public String flags;
public String saddr; // TODO byte[] public String saddr;
public int sport; public int sport;
public String daddr; // TODO byte[] public String daddr;
public int dport; public int dport;
public String data; public String data;
public int uid; public int uid;