diff --git a/android/widgets/src/main/java/org/nativescript/widgets/BorderDrawable.java b/android/widgets/src/main/java/org/nativescript/widgets/BorderDrawable.java index dc861545d..aa6e03f8e 100644 --- a/android/widgets/src/main/java/org/nativescript/widgets/BorderDrawable.java +++ b/android/widgets/src/main/java/org/nativescript/widgets/BorderDrawable.java @@ -367,9 +367,6 @@ public class BorderDrawable extends ColorDrawable { int borderColor = this.getUniformBorderColor(); // iOS and browsers use black when no color is specified. - if (borderColor == Color.TRANSPARENT){ - borderColor = Color.BLACK; - } if (borderWidth > 0) { float halfBorderWidth = borderWidth / 2.0f; RectF middleBoundsF = new RectF(bounds.left + halfBorderWidth, bounds.top + halfBorderWidth, bounds.right - halfBorderWidth, bounds.bottom - halfBorderWidth);