From 0e49c0e152f6f560be94b12629bdd946d3dec5c8 Mon Sep 17 00:00:00 2001 From: nkjackzhang Date: Fri, 3 Mar 2017 12:00:57 +0800 Subject: [PATCH 1/2] Remove unecessary "<<" See gh-1343 --- .../org/springframework/transaction/TransactionDefinition.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-tx/src/main/java/org/springframework/transaction/TransactionDefinition.java b/spring-tx/src/main/java/org/springframework/transaction/TransactionDefinition.java index e30d397a61..448946ffb6 100644 --- a/spring-tx/src/main/java/org/springframework/transaction/TransactionDefinition.java +++ b/spring-tx/src/main/java/org/springframework/transaction/TransactionDefinition.java @@ -233,7 +233,7 @@ public interface TransactionDefinition { * ({@link #PROPAGATION_SUPPORTS}). In the latter case, the flag will * only apply to managed resources within the application, such as a * Hibernate {@code Session}. - << *

This just serves as a hint for the actual transaction subsystem; + *

This just serves as a hint for the actual transaction subsystem; * it will not necessarily cause failure of write access attempts. * A transaction manager which cannot interpret the read-only hint will * not throw an exception when asked for a read-only transaction. From 05787f314f216bda3ee2149792abb7bf95e80085 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 3 Mar 2017 09:28:56 +0100 Subject: [PATCH 2/2] Update copyright header Closes gh-1343 --- .../org/springframework/transaction/TransactionDefinition.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-tx/src/main/java/org/springframework/transaction/TransactionDefinition.java b/spring-tx/src/main/java/org/springframework/transaction/TransactionDefinition.java index 448946ffb6..a45c096e1b 100644 --- a/spring-tx/src/main/java/org/springframework/transaction/TransactionDefinition.java +++ b/spring-tx/src/main/java/org/springframework/transaction/TransactionDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2015 the original author or authors. + * Copyright 2002-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.