Skip to content

Commit a99d783

Browse files
authored
Merge pull request #2815 from hazendaz/copyright
[ci] Fix end of line markers at end of file per git standards (ie emp…
2 parents 3505cc1 + 0183bad commit a99d783

File tree

90 files changed

+174
-174
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+174
-174
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Set default behaviour, in case users don't have core.autocrlf set.
2-
* text=auto
2+
* text=auto

src/main/java/org/apache/ibatis/builder/CacheRefResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2009-2022 the original author or authors.
2+
* Copyright 2009-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.
@@ -32,4 +32,4 @@ public CacheRefResolver(MapperBuilderAssistant assistant, String cacheRefNamespa
3232
public Cache resolveCacheRef() {
3333
return assistant.useCacheRef(cacheRefNamespace);
3434
}
35-
}
35+
}

src/main/java/org/apache/ibatis/builder/annotation/MethodResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2009-2022 the original author or authors.
2+
* Copyright 2009-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.
@@ -33,4 +33,4 @@ public void resolve() {
3333
annotationBuilder.parseStatement(method);
3434
}
3535

36-
}
36+
}

src/main/java/org/apache/ibatis/reflection/ReflectorFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2009-2022 the original author or authors.
2+
* Copyright 2009-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.
@@ -22,4 +22,4 @@ public interface ReflectorFactory {
2222
void setClassCacheEnabled(boolean classCacheEnabled);
2323

2424
Reflector findForClass(Class<?> type);
25-
}
25+
}

src/main/java/org/apache/ibatis/scripting/xmltags/StaticTextSqlNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2009-2022 the original author or authors.
2+
* Copyright 2009-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.
@@ -31,4 +31,4 @@ public boolean apply(DynamicContext context) {
3131
return true;
3232
}
3333

34-
}
34+
}

src/main/java/org/apache/ibatis/type/BlobTypeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ public byte[] getNullableResult(CallableStatement cs, int columnIndex) throws SQ
6363
}
6464
return returnValue;
6565
}
66-
}
66+
}

src/main/java/org/apache/ibatis/type/EnumTypeHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2009-2022 the original author or authors.
2+
* Copyright 2009-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.
@@ -60,4 +60,4 @@ public E getNullableResult(CallableStatement cs, int columnIndex) throws SQLExce
6060
String s = cs.getString(columnIndex);
6161
return s == null ? null : Enum.valueOf(type, s);
6262
}
63-
}
63+
}

src/main/java/org/apache/ibatis/type/NClobTypeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ private String toString(Clob clob) throws SQLException {
5656
return clob == null ? null : clob.getSubString(1, (int) clob.length());
5757
}
5858

59-
}
59+
}

src/main/resources/org/apache/ibatis/builder/xml/mybatis-3-config.dtd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<!--
33
4-
Copyright 2009-2022 the original author or authors.
4+
Copyright 2009-2023 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -114,4 +114,4 @@ class CDATA #IMPLIED
114114
<!ELEMENT package EMPTY>
115115
<!ATTLIST package
116116
name CDATA #REQUIRED
117-
>
117+
>

src/site/site.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2009-2022 the original author or authors.
4+
Copyright 2009-2023 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -53,4 +53,4 @@
5353

5454
<menu ref="reports"/>
5555
</body>
56-
</project>
56+
</project>

0 commit comments

Comments
 (0)