1
1
/*
2
- * Copyright 2002-2015 the original author or authors.
2
+ * Copyright 2002-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -62,7 +62,7 @@ public enum Propagation {
62
62
* on all transaction managers. This in particular applies to
63
63
* {@link org.springframework.transaction.jta.JtaTransactionManager},
64
64
* which requires the {@code javax.transaction.TransactionManager} to be
65
- * made available it to it (which is server-specific in standard Java EE).
65
+ * made available to it (which is server-specific in standard Java EE).
66
66
* @see org.springframework.transaction.jta.JtaTransactionManager#setTransactionManager
67
67
*/
68
68
REQUIRES_NEW (TransactionDefinition .PROPAGATION_REQUIRES_NEW ),
@@ -74,7 +74,7 @@ public enum Propagation {
74
74
* on all transaction managers. This in particular applies to
75
75
* {@link org.springframework.transaction.jta.JtaTransactionManager},
76
76
* which requires the {@code javax.transaction.TransactionManager} to be
77
- * made available it to it (which is server-specific in standard Java EE).
77
+ * made available to it (which is server-specific in standard Java EE).
78
78
* @see org.springframework.transaction.jta.JtaTransactionManager#setTransactionManager
79
79
*/
80
80
NOT_SUPPORTED (TransactionDefinition .PROPAGATION_NOT_SUPPORTED ),
@@ -100,8 +100,12 @@ public enum Propagation {
100
100
private final int value ;
101
101
102
102
103
- Propagation (int value ) { this .value = value ; }
103
+ Propagation (int value ) {
104
+ this .value = value ;
105
+ }
104
106
105
- public int value () { return this .value ; }
107
+ public int value () {
108
+ return this .value ;
109
+ }
106
110
107
111
}
0 commit comments