aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/java/com/wireguard/util/SortedKeyedList.java
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2018-06-19 00:47:48 -0500
committerSamuel Holland <samuel@sholland.org>2018-06-19 21:59:44 -0500
commit9be51f460c88e1fd4fab58504e053532d51fdad1 (patch)
tree3f322d5255209c3d14d50eec30f17e60c3e46101 /app/src/main/java/com/wireguard/util/SortedKeyedList.java
parentcrypto: Slightly Java-ify the Curve25519 implementation (diff)
downloadwireguard-android-9be51f460c88e1fd4fab58504e053532d51fdad1.tar.xz
wireguard-android-9be51f460c88e1fd4fab58504e053532d51fdad1.zip
util: Extract non-Android utility interfaces
As part of a refactoring that will likely introduce more custom collection classes, move the non-Android-specific parts outside the com.wireguard.android package.
Diffstat (limited to '')
-rw-r--r--app/src/main/java/com/wireguard/util/SortedKeyedList.java (renamed from app/src/main/java/com/wireguard/android/util/SortedKeyedList.java)3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/src/main/java/com/wireguard/android/util/SortedKeyedList.java b/app/src/main/java/com/wireguard/util/SortedKeyedList.java
index cca6d017..85aeecff 100644
--- a/app/src/main/java/com/wireguard/android/util/SortedKeyedList.java
+++ b/app/src/main/java/com/wireguard/util/SortedKeyedList.java
@@ -1,10 +1,9 @@
/*
* Copyright © 2018 Samuel Holland <samuel@sholland.org>
- * Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
* SPDX-License-Identifier: GPL-2.0-or-later
*/
-package com.wireguard.android.util;
+package com.wireguard.util;
import java.util.Collection;
import java.util.Comparator;