summaryrefslogtreecommitdiffstats
path: root/samples/RenderScript
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2011-04-07 18:40:04 -0700
committerJoe Onorato <joeo@google.com>2011-04-07 19:22:49 -0700
commit1710677cba88977d2fbd9f8c2455ec6f1d0ae11f (patch)
tree03e0bed0df2058cb0c3bd3c09aaea2afe4a47412 /samples/RenderScript
parent848dcf58f91dea7466b7e3fcd1af7dfc53268a3a (diff)
downloadandroid_development-1710677cba88977d2fbd9f8c2455ec6f1d0ae11f.tar.gz
android_development-1710677cba88977d2fbd9f8c2455ec6f1d0ae11f.tar.bz2
android_development-1710677cba88977d2fbd9f8c2455ec6f1d0ae11f.zip
Remove the deprecated things from Config.java. These haven't been working since before 1.0.
Change-Id: I01e0e2476de9098152434b9991c22483fc6e1165
Diffstat (limited to 'samples/RenderScript')
-rw-r--r--samples/RenderScript/Balls/src/com/example/android/rs/balls/Balls.java3
-rw-r--r--samples/RenderScript/Fountain/src/com/example/android/rs/fountain/Fountain.java3
2 files changed, 2 insertions, 4 deletions
diff --git a/samples/RenderScript/Balls/src/com/example/android/rs/balls/Balls.java b/samples/RenderScript/Balls/src/com/example/android/rs/balls/Balls.java
index d3b900a8f..2a7436add 100644
--- a/samples/RenderScript/Balls/src/com/example/android/rs/balls/Balls.java
+++ b/samples/RenderScript/Balls/src/com/example/android/rs/balls/Balls.java
@@ -26,7 +26,6 @@ import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.provider.Settings.System;
-import android.util.Config;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
@@ -51,7 +50,7 @@ public class Balls extends Activity implements SensorEventListener {
private static final String LOG_TAG = "libRS_jni";
private static final boolean DEBUG = false;
- private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV;
+ private static final boolean LOG_ENABLED = false;
private BallsView mView;
private SensorManager mSensorManager;
diff --git a/samples/RenderScript/Fountain/src/com/example/android/rs/fountain/Fountain.java b/samples/RenderScript/Fountain/src/com/example/android/rs/fountain/Fountain.java
index 53b4f26f4..311455ad9 100644
--- a/samples/RenderScript/Fountain/src/com/example/android/rs/fountain/Fountain.java
+++ b/samples/RenderScript/Fountain/src/com/example/android/rs/fountain/Fountain.java
@@ -26,7 +26,6 @@ import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.provider.Settings.System;
-import android.util.Config;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
@@ -42,7 +41,7 @@ public class Fountain extends Activity {
private static final String LOG_TAG = "libRS_jni";
private static final boolean DEBUG = false;
- private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV;
+ private static final boolean LOG_ENABLED = false;
private FountainView mView;