From 42574550d036bb4561437ca68c2d28b5b59347ca Mon Sep 17 00:00:00 2001 From: Eric House Date: Wed, 13 Jan 2016 07:59:46 -0800 Subject: [PATCH] move method next to others with same name --- .../org/eehouse/android/xw4/DwnldDelegate.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DwnldDelegate.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DwnldDelegate.java index c9603482b..7471ae145 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DwnldDelegate.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DwnldDelegate.java @@ -391,6 +391,15 @@ public class DwnldDelegate extends ListDelegateBase { downloadDictInBack( context, uri, name, lstnr ); } + public static void downloadDictInBack( Context context, Uri uri, + String name, + DownloadFinishedListener lstnr ) + { + Uri[] uris = new Uri[] { uri }; + String[] names = new String[] { name }; + downloadDictsInBack( context, uris, names, lstnr ); + } + public static void downloadDictsInBack( Context context, Uri[] uris, String[] names, DownloadFinishedListener lstnr ) @@ -406,15 +415,6 @@ public class DwnldDelegate extends ListDelegateBase { context.startActivity( intent ); } - public static void downloadDictInBack( Context context, Uri uri, - String name, - DownloadFinishedListener lstnr ) - { - Uri[] uris = new Uri[] { uri }; - String[] names = new String[] { name }; - downloadDictsInBack( context, uris, names, lstnr ); - } - public static Intent makeAppDownloadIntent( Context context, String url ) { Intent intent = new Intent( context, DwnldActivity.class );