File tree Expand file tree Collapse file tree
drawee/src/main/java/com/facebook/drawee/generic Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -319,9 +319,8 @@ private static Drawable applyLeafRounding(
319319 return drawable ;
320320 }
321321
322- private
323322 /** Applies the given rounding params on the specified rounded drawable. */
324- static void applyRoundingParams (Rounded rounded , RoundingParams roundingParams ) {
323+ private static void applyRoundingParams (Rounded rounded , RoundingParams roundingParams ) {
325324 rounded .setCircle (roundingParams .getRoundAsCircle ());
326325 rounded .setRadii (roundingParams .getCornersRadii ());
327326 rounded .setBorder (roundingParams .getBorderColor (), roundingParams .getBorderWidth ());
@@ -342,9 +341,8 @@ static void resetRoundingParams(Rounded rounded) {
342341 rounded .setRepeatEdgePixels (RoundedBitmapDrawable .getDefaultRepeatEdgePixels ());
343342 }
344343
345- private
346344 /** Finds the immediate parent of a leaf drawable. */
347- static DrawableParent findDrawableParentForLeaf (DrawableParent parent ) {
345+ private static DrawableParent findDrawableParentForLeaf (DrawableParent parent ) {
348346 while (true ) {
349347 Drawable child = parent .getDrawable ();
350348 if (child == parent || !(child instanceof DrawableParent )) {
You can’t perform that action at this time.
0 commit comments