Skip to content

Commit

Permalink
fixed java21 switch to better calculate stats
Browse files Browse the repository at this point in the history
  • Loading branch information
car031 committed Jan 3, 2025
1 parent 38c3316 commit 5d2f0a6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -820,6 +820,7 @@ protected void saveStatistic(String parameter, Object val, long tenantId) throws
case Date dateVal -> gen.setDate1(dateVal);
case String stringVal -> gen.setString1(stringVal);
case Integer intVal -> gen.setInteger1(intVal.longValue());
case Long longVal -> gen.setInteger1(longVal);
default -> gen.setInteger1(null);
}

Expand Down

0 comments on commit 5d2f0a6

Please sign in to comment.