diff --git a/Container/src/main/java/io/deephaven/engine/rowset/impl/rsp/container/ShortConsumer.java b/Container/src/main/java/io/deephaven/engine/rowset/impl/rsp/container/ShortConsumer.java index 7a944432904..3ac54cbf903 100644 --- a/Container/src/main/java/io/deephaven/engine/rowset/impl/rsp/container/ShortConsumer.java +++ b/Container/src/main/java/io/deephaven/engine/rowset/impl/rsp/container/ShortConsumer.java @@ -8,9 +8,9 @@ *
  * {@code
  * bitmap.forEach(new ShortConsumer() {
- *   public boolean accept(short value) {
- *     // do something here
- *   }
+ *     public boolean accept(short value) {
+ *         // do something here
+ *     }
  * });
  * }
  * 
diff --git a/Container/src/main/java/io/deephaven/engine/rowset/impl/rsp/container/ShortRangeConsumer.java b/Container/src/main/java/io/deephaven/engine/rowset/impl/rsp/container/ShortRangeConsumer.java index c876c9868cb..62807ab0916 100644 --- a/Container/src/main/java/io/deephaven/engine/rowset/impl/rsp/container/ShortRangeConsumer.java +++ b/Container/src/main/java/io/deephaven/engine/rowset/impl/rsp/container/ShortRangeConsumer.java @@ -10,9 +10,9 @@ *
  * {@code
  * bitmap.forEach(new ShortConsumer() {
- *   public boolean accept(short value) {
- *     // do something here
- *   }
+ *     public boolean accept(short value) {
+ *         // do something here
+ *     }
  * });
  * }
  * 
diff --git a/Plot/src/main/java/io/deephaven/plot/datasets/category/AbstractSwappableTableBasedCategoryDataSeries.java b/Plot/src/main/java/io/deephaven/plot/datasets/category/AbstractSwappableTableBasedCategoryDataSeries.java index c74a44242a9..f111566b446 100644 --- a/Plot/src/main/java/io/deephaven/plot/datasets/category/AbstractSwappableTableBasedCategoryDataSeries.java +++ b/Plot/src/main/java/io/deephaven/plot/datasets/category/AbstractSwappableTableBasedCategoryDataSeries.java @@ -45,14 +45,14 @@ public CategoryDataSeries pointShape(final Function pointSha chart().figure().registerFigureFunction(new FigureImplFunction(figImpl -> { ((AbstractSwappableTableBasedCategoryDataSeries) figImpl.getFigure().getCharts() .getChart(chart().row(), chart().column()).axes(axes().id()).series(id())) - .shapesSetSpecific( - new AssociativeDataSwappableTable(getSwappableTable(), - getCategoryCol(), colName, Comparable.class, String.class, getPlotInfo()) { - @Override - public Shape convert(String v) { - return NamedShape.getShape(v); - } - }); + .shapesSetSpecific( + new AssociativeDataSwappableTable(getSwappableTable(), + getCategoryCol(), colName, Comparable.class, String.class, getPlotInfo()) { + @Override + public Shape convert(String v) { + return NamedShape.getShape(v); + } + }); return figImpl; }, this)); return this; @@ -67,8 +67,8 @@ public CategoryDataSeries pointSize(final Function { ((AbstractSwappableTableBasedCategoryDataSeries) figImpl.getFigure().getCharts() .getChart(chart().row(), chart().column()).axes(axes().id()).series(id())) - .sizesSetSpecific(new AssociativeDataSwappableTable<>(getSwappableTable(), getCategoryCol(), - colName, Comparable.class, Number.class, getPlotInfo())); + .sizesSetSpecific(new AssociativeDataSwappableTable<>(getSwappableTable(), getCategoryCol(), + colName, Comparable.class, Number.class, getPlotInfo())); return figImpl; }, this)); return this; @@ -83,8 +83,8 @@ public CategoryDataSeries pointColor(final Function { ((AbstractSwappableTableBasedCategoryDataSeries) figImpl.getFigure().getCharts() .getChart(chart().row(), chart().column()).axes(axes().id()).series(id())) - .colorsSetSpecific(new AssociativeDataSwappableTable<>(getSwappableTable(), - getCategoryCol(), colName, Comparable.class, Paint.class, getPlotInfo())); + .colorsSetSpecific(new AssociativeDataSwappableTable<>(getSwappableTable(), + getCategoryCol(), colName, Comparable.class, Paint.class, getPlotInfo())); return figImpl; }, this)); return this; @@ -99,14 +99,14 @@ public CategoryDataSeries pointColorInteger(final Functi chart().figure().registerFigureFunction(new FigureImplFunction(figImpl -> { ((AbstractSwappableTableBasedCategoryDataSeries) figImpl.getFigure().getCharts() .getChart(chart().row(), chart().column()).axes(axes().id()).series(id())) - .colorsSetSpecific( - new AssociativeDataSwappableTable(getSwappableTable(), - getCategoryCol(), colName, Comparable.class, Integer.class, getPlotInfo()) { - @Override - public Paint convert(Integer v) { - return intToColor(chart(), v); - } - }); + .colorsSetSpecific( + new AssociativeDataSwappableTable(getSwappableTable(), + getCategoryCol(), colName, Comparable.class, Integer.class, getPlotInfo()) { + @Override + public Paint convert(Integer v) { + return intToColor(chart(), v); + } + }); return figImpl; }, this)); return this; @@ -121,14 +121,14 @@ public