Skip to content

Commit

Permalink
Internal Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 516429261
  • Loading branch information
sjudd authored and glide-copybara-robot committed Mar 14, 2023
1 parent c8e39b4 commit 4196da8
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.bumptech.glide.request.target;

import static android.view.ViewGroup.LayoutParams;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
Expand All @@ -21,6 +20,7 @@
import android.view.View;
import android.view.View.OnAttachStateChangeListener;
import android.view.ViewGroup;
import android.view.ViewGroup.LayoutParams;
import android.view.ViewTreeObserver;
import android.view.WindowManager;
import android.widget.FrameLayout;
Expand Down Expand Up @@ -271,7 +271,8 @@ public void testSizeCallbacksAreCalledInOrderPreDraw() {
target.getSize(cbs[i]);
}

int width = 100, height = 111;
int width = 100;
int height = 111;
parent.getLayoutParams().width = width;
parent.getLayoutParams().height = height;
activity.visible();
Expand Down

0 comments on commit 4196da8

Please sign in to comment.