summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorVasu Nori <vnori@google.com>2011-03-01 18:37:52 -0800
committerVasu Nori <vnori@google.com>2011-03-01 18:37:52 -0800
commitd6c367f424229e4dac841893f69260295f50c33d (patch)
tree0d409b66e43235e0459deaab638d79b245b35969 /core
parent8a358a7eedae45178f55c3b514a15e8ae4b10dba (diff)
downloadframeworks_base-d6c367f424229e4dac841893f69260295f50c33d.zip
frameworks_base-d6c367f424229e4dac841893f69260295f50c33d.tar.gz
frameworks_base-d6c367f424229e4dac841893f69260295f50c33d.tar.bz2
cosmetic fixes: removing unused members/imports
Change-Id: I307e5d5c7c1270d2590ba66f4c3d3b1a96646344
Diffstat (limited to 'core')
-rw-r--r--core/java/android/database/CursorWindow.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/core/java/android/database/CursorWindow.java b/core/java/android/database/CursorWindow.java
index 7a2d271..f7cbf7a 100644
--- a/core/java/android/database/CursorWindow.java
+++ b/core/java/android/database/CursorWindow.java
@@ -17,14 +17,12 @@
package android.database;
import android.content.res.Resources;
-import android.database.sqlite.DatabaseObjectNotClosedException;
import android.database.sqlite.SQLiteClosable;
import android.os.Binder;
import android.os.IBinder;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.Process;
-import android.os.StrictMode;
import android.util.Log;
import android.util.SparseIntArray;
@@ -47,7 +45,6 @@ public class CursorWindow extends SQLiteClosable implements Parcelable {
private int nWindow;
private int mStartPos;
- private final Throwable mStackTrace;
/**
* Creates a new empty window.
@@ -59,7 +56,6 @@ public class CursorWindow extends SQLiteClosable implements Parcelable {
int rslt = native_init(sCursorWindowSize, localWindow);
printDebugMsgIfError(rslt);
recordNewWindow(Binder.getCallingPid(), nWindow);
- mStackTrace = new DatabaseObjectNotClosedException().fillInStackTrace();
}
private void printDebugMsgIfError(int rslt) {
@@ -603,7 +599,6 @@ public class CursorWindow extends SQLiteClosable implements Parcelable {
IBinder nativeBinder = source.readStrongBinder();
mStartPos = source.readInt();
int rslt = native_init(nativeBinder);
- mStackTrace = new DatabaseObjectNotClosedException().fillInStackTrace();
printDebugMsgIfError(rslt);
}