diff options
author | Samuel Holland <samuel@sholland.org> | 2018-01-06 23:07:17 -0600 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2018-01-06 23:07:17 -0600 |
commit | 4f2b6bef84f75bc17101a17c60251fc0df43aae1 (patch) | |
tree | c51c8fdfec422779d921f0455f029d55b52b34db /app/src/main/res/layout | |
parent | 4d38993832839da2c4567ec5c412ecd4464b5d33 (diff) |
Keyed...: Rename all the things
Hooray for diamond interface inheritance.
Signed-off-by: Samuel Holland <samuel@sholland.org>
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/tunnel_list_fragment.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/tunnel_list_item.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/res/layout/tunnel_list_fragment.xml b/app/src/main/res/layout/tunnel_list_fragment.xml index fa489840..ba3728a3 100644 --- a/app/src/main/res/layout/tunnel_list_fragment.xml +++ b/app/src/main/res/layout/tunnel_list_fragment.xml @@ -12,7 +12,7 @@ <variable name="tunnels" - type="com.wireguard.android.util.KeyedObservableList<String, Tunnel>" /> + type="com.wireguard.android.util.ObservableKeyedList<String, Tunnel>" /> </data> <com.commonsware.cwac.crossport.design.widget.CoordinatorLayout diff --git a/app/src/main/res/layout/tunnel_list_item.xml b/app/src/main/res/layout/tunnel_list_item.xml index 8ae0dd23..8de2b3c2 100644 --- a/app/src/main/res/layout/tunnel_list_item.xml +++ b/app/src/main/res/layout/tunnel_list_item.xml @@ -10,7 +10,7 @@ <variable name="collection" - type="com.wireguard.android.util.KeyedObservableList<String, Tunnel>" /> + type="com.wireguard.android.util.ObservableKeyedList<String, Tunnel>" /> <variable name="key" |