diff --git a/app/src/main/java/com/keepassdroid/utils/Util.java b/app/src/main/java/com/keepassdroid/utils/Util.java index 32d82801b..3a060441b 100644 --- a/app/src/main/java/com/keepassdroid/utils/Util.java +++ b/app/src/main/java/com/keepassdroid/utils/Util.java @@ -19,7 +19,6 @@ */ package com.keepassdroid.utils; -import android.app.Activity; import android.content.ActivityNotFoundException; import android.content.Context; import android.content.Intent; @@ -65,16 +64,6 @@ public class Util { public static void gotoUrl(Context context, int resId) throws ActivityNotFoundException { gotoUrl(context, context.getString(resId)); } - - public static String getEditText(Activity act, int resId) { - TextView te = (TextView) act.findViewById(resId); - - if (te != null) { - return te.getText().toString(); - } else { - return ""; - } - } public static void copyStream(InputStream in, OutputStream out) throws IOException { byte[] buf = new byte[1024];