Skip to content

Commit

Permalink
Fixed order of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
normanj-bitquill committed Sep 24, 2024
1 parent e0f012b commit a560c75
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
package org.apache.calcite.util.format.postgresql;

import org.apache.calcite.util.format.postgresql.format.compiled.CompiledItem;
import org.apache.calcite.util.format.postgresql.format.compiled.CompiledPattern;
import org.apache.calcite.util.format.postgresql.format.compiled.LiteralCompiledItem;
import org.apache.calcite.util.format.postgresql.format.AmPmFormatPattern;
import org.apache.calcite.util.format.postgresql.format.BcAdFormatPattern;
import org.apache.calcite.util.format.postgresql.format.DayOfWeekFormatPattern;
Expand All @@ -31,6 +28,9 @@
import org.apache.calcite.util.format.postgresql.format.TimeZoneMinutesFormatPattern;
import org.apache.calcite.util.format.postgresql.format.TimeZoneOffsetFormatPattern;
import org.apache.calcite.util.format.postgresql.format.YearWithCommasFormatPattern;
import org.apache.calcite.util.format.postgresql.format.compiled.CompiledItem;
import org.apache.calcite.util.format.postgresql.format.compiled.CompiledPattern;
import org.apache.calcite.util.format.postgresql.format.compiled.LiteralCompiledItem;

import com.google.common.collect.ImmutableList;

Expand Down

0 comments on commit a560c75

Please sign in to comment.