1
0
Fork 0
mirror of https://github.com/M66B/NetGuard.git synced 2024-12-26 09:48:46 +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
useProguard = true
proguardFiles.add(file('proguard-rules.pro'))
// TODO remove on stable release
ndk {
debuggable true
}

View file

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

View file

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