Skip to content

Commit

Permalink
grid dao
Browse files Browse the repository at this point in the history
#CTCTOWALTZ-1917
finos#5107
  • Loading branch information
JWoodland-Scott committed Oct 8, 2020
1 parent ad3565c commit 84baffa
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public class ReportGridDao {

private final com.khartec.waltz.schema.tables.Application app = APPLICATION.as("app");
private final com.khartec.waltz.schema.tables.Measurable m = MEASURABLE.as("m");
private final com.khartec.waltz.schema.tables.Measurable m2 = MEASURABLE.as("m2");
private final com.khartec.waltz.schema.tables.MeasurableRating mr = MEASURABLE_RATING.as("mr");
private final com.khartec.waltz.schema.tables.MeasurableCategory mc = MEASURABLE_CATEGORY.as("mc");
private final com.khartec.waltz.schema.tables.ReportGridColumnDefinition rgcd = REPORT_GRID_COLUMN_DEFINITION.as("rgcd");
Expand Down Expand Up @@ -184,8 +183,6 @@ private Set<ReportGridRatingCell> fetchExactMeasurableData(Select<Record1<Long>>
.and(mr.ENTITY_KIND.eq(EntityKind.APPLICATION.name())))
.where(mr.MEASURABLE_ID.in(exactMeasurableIds));

System.out.println(qry);

return qry
.fetchSet(r -> ImmutableReportGridRatingCell.builder()
.applicationId(r.get(mr.ENTITY_ID))
Expand Down

0 comments on commit 84baffa

Please sign in to comment.