Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
IngoZenz committed Oct 3, 2021
2 parents 8724262 + 5c80ee3 commit 6209fe7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dnsfilter.android"
android:versionCode="1505000"
android:versionName="1.50.50.0">
android:versionCode="1505001"
android:versionName="1.50.50.1">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/dnsfilter/DNSFilterManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ of the License, or (at your option) any later version.

public class DNSFilterManager extends ConfigurationAccess {

public static final String VERSION = "1505000";
public static final String VERSION = "1505001";

private static DNSFilterManager INSTANCE = new DNSFilterManager();

Expand Down
2 changes: 2 additions & 0 deletions app/src/main/java/util/HugePackedSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ public void clear() {

@Override
public boolean contains(Object obj) {
if (count == 0)
return false;
return subsets[ (Math.abs( obj.hashCode() % slotCount)) ].contains(obj);
}

Expand Down

0 comments on commit 6209fe7

Please sign in to comment.