Skip to content

Commit 036e84e

Browse files
committed
Checkstyle
1 parent 77b1409 commit 036e84e

File tree

1 file changed

+5
-5
lines changed
  • src/main/java/org/mybatis/dynamic/sql/select/function

1 file changed

+5
-5
lines changed

src/main/java/org/mybatis/dynamic/sql/select/function/Concat.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016-2022 the original author or authors.
2+
* Copyright 2016-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -15,15 +15,15 @@
1515
*/
1616
package org.mybatis.dynamic.sql.select.function;
1717

18-
import org.mybatis.dynamic.sql.BasicColumn;
19-
import org.mybatis.dynamic.sql.BindableColumn;
20-
import org.mybatis.dynamic.sql.render.TableAliasCalculator;
21-
2218
import java.util.ArrayList;
2319
import java.util.Arrays;
2420
import java.util.List;
2521
import java.util.stream.Collectors;
2622

23+
import org.mybatis.dynamic.sql.BasicColumn;
24+
import org.mybatis.dynamic.sql.BindableColumn;
25+
import org.mybatis.dynamic.sql.render.TableAliasCalculator;
26+
2727
public class Concat<T> extends AbstractUniTypeFunction<T, Concat<T>> {
2828
private final List<BasicColumn> allColumns = new ArrayList<>();
2929

0 commit comments

Comments
 (0)