aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/github/daneren2005/dsub/view
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2016-05-30 17:42:45 -0500
committerScott Jackson <daneren2005@gmail.com>2016-05-30 17:42:45 -0500
commit5dd1537844ffd459adeefec1bda88d6c6234e068 (patch)
tree768bf51b64e295ebb6f891292ee6e681b239e5b3 /app/src/main/java/github/daneren2005/dsub/view
parent2a2e6d5c57b45bba59dce6716fc01b1a1b0cc1a4 (diff)
downloaddsub-5dd1537844ffd459adeefec1bda88d6c6234e068.tar.gz
dsub-5dd1537844ffd459adeefec1bda88d6c6234e068.tar.bz2
dsub-5dd1537844ffd459adeefec1bda88d6c6234e068.zip
Get rid of Log.d
Diffstat (limited to 'app/src/main/java/github/daneren2005/dsub/view')
-rw-r--r--app/src/main/java/github/daneren2005/dsub/view/CardView.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/src/main/java/github/daneren2005/dsub/view/CardView.java b/app/src/main/java/github/daneren2005/dsub/view/CardView.java
index b9e0bcce..d6bca330 100644
--- a/app/src/main/java/github/daneren2005/dsub/view/CardView.java
+++ b/app/src/main/java/github/daneren2005/dsub/view/CardView.java
@@ -61,7 +61,6 @@ public class CardView extends FrameLayout{
// clipPath is not supported with Hardware Acceleration before API 18
// http://stackoverflow.com/questions/8895677/work-around-canvas-clippath-that-is-not-supported-in-android-any-more/8895894#8895894
if(Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2 && isHardwareAccelerated()) {
- Log.d(TAG, "Change to software");
setLayerType(View.LAYER_TYPE_SOFTWARE, null);
}
}