Skip to content

Commit 24270ab

Browse files
committed
Updated license year and javadoc format
1 parent 97ea9ac commit 24270ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/apache/ibatis/session/TransactionIsolationLevel.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2018 the original author or authors.
2+
* Copyright 2009-2020 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.
@@ -27,9 +27,9 @@ public enum TransactionIsolationLevel {
2727
REPEATABLE_READ(Connection.TRANSACTION_REPEATABLE_READ),
2828
SERIALIZABLE(Connection.TRANSACTION_SERIALIZABLE),
2929
/**
30-
* A non-standard isolation level for Microsoft SQL Server. Defined in
31-
* the SQL Server JDBC driver {@link com.microsoft.sqlserver.jdbc.ISQLServerConnection}
32-
*/
30+
* A non-standard isolation level for Microsoft SQL Server.
31+
* Defined in the SQL Server JDBC driver {@link com.microsoft.sqlserver.jdbc.ISQLServerConnection}
32+
*/
3333
SQL_SERVER_SNAPSHOT(0x1000);
3434

3535
private final int level;

0 commit comments

Comments
 (0)