Skip to content

Commit 288cdbb

Browse files
Joshua Selbometa-codesync[bot]
authored andcommitted
Fix dangling javadoc comments to unblock JDK 25 build
Reviewed By: NavidQar Differential Revision: D108932971 fbshipit-source-id: de1ba421d094deeaa4d066b494cceb7ed2eed02f
1 parent f252421 commit 288cdbb

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

drawee/src/main/java/com/facebook/drawee/generic/WrappingUtils.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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)) {

0 commit comments

Comments
 (0)