litho-it/src/main/java/com/facebook/litho/widget/MountSpecWithTreePropSpec.java [38:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  static void onMeasure(
      final ComponentContext c,
      final ComponentLayout layout,
      final int widthSpec,
      final int heightSpec,
      final Size size,
      final @Prop int viewWidth,
      final @Prop int viewHeight) {
    size.width = viewWidth;
    size.height = viewHeight;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



litho-it/src/main/java/com/facebook/litho/widget/TextViewCounterSpec.java [46:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  static void onMeasure(
      final ComponentContext c,
      final ComponentLayout layout,
      final int widthSpec,
      final int heightSpec,
      final Size size,
      final @Prop int viewWidth,
      final @Prop int viewHeight) {
    size.width = viewWidth;
    size.height = viewHeight;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



