From 0943c246693229c5ac0760a205fc7f928172b01b Mon Sep 17 00:00:00 2001
From: eehouse <eehouse@0782aaa5-4710-0410-8820-a96bf9123855>
Date: Sun, 14 Mar 2010 16:25:18 +0000
Subject: [PATCH] what I meant to check in: remove log message and commented
 code

---
 .../src/org/eehouse/android/xw4/DictImportActivity.java        | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DictImportActivity.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DictImportActivity.java
index 33a7e707e..d056df525 100644
--- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DictImportActivity.java
+++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DictImportActivity.java
@@ -74,7 +74,6 @@ public class DictImportActivity extends Activity {
                 Utils.logf( "based on MIME type" );
                 new DownloadFilesTask().execute( uri );
             } else if ( uri.toString().endsWith( ".xwd" ) ) {
-                Utils.logf( "based on file extn" );
                 String fmt = getString( R.string.downloading_dictf );
                 String txt = String.format( fmt, basename( uri.getPath()) );
                 TextView view = (TextView)findViewById( R.id.dwnld_message );
@@ -100,8 +99,6 @@ public class DictImportActivity extends Activity {
     private String basename( String path )
     {
         return new File(path).getName();
-        // int slashLoc = path.lastIndexOf('/');
-        // return path.substring( slashLoc + 1 );
     }
 }