FQN Cleanup

Summary: Fixing a silly missing import

Reviewed By: muraziz

Differential Revision: D23265033

fbshipit-source-id: 0e78d19314df853d2c512535650d3294bf3099e0
This commit is contained in:
Paco Estevez Garcia
2020-08-25 04:27:10 -07:00
committed by Facebook GitHub Bot
parent 47d3dd6413
commit b109fc4d3e

View File

@@ -27,8 +27,7 @@ import javax.annotation.Nullable;
public class DataUtils {
static List<com.facebook.flipper.plugins.inspector.Named<com.facebook.flipper.core.FlipperObject>>
getPropData(Object node) throws Exception {
static List<Named<FlipperObject>> getPropData(Object node) throws Exception {
final FlipperObject.Builder props = new FlipperObject.Builder();
List<Named<FlipperObject>> data = new ArrayList<>();
@@ -110,17 +109,17 @@ public class DataUtils {
return hasState ? state.build() : null;
}
static com.facebook.flipper.plugins.inspector.InspectorValue fromDrawable(Drawable d) {
static InspectorValue fromDrawable(Drawable d) {
int color = 0;
if (d instanceof ColorDrawable) {
color = ((ColorDrawable) d).getColor();
} else if (d instanceof ComparableColorDrawable) {
color = ((ComparableColorDrawable) d).getColor();
}
return com.facebook.flipper.plugins.inspector.InspectorValue.mutable(Color, color);
return InspectorValue.mutable(Color, color);
}
static com.facebook.flipper.plugins.inspector.InspectorValue fromColor(int color) {
return com.facebook.flipper.plugins.inspector.InspectorValue.mutable(Color, color);
static InspectorValue fromColor(int color) {
return InspectorValue.mutable(Color, color);
}
}