File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
spring-aop/src/main/java/org/springframework/aop/interceptor
spring-expression/src/main/java/org/springframework/expression/spel Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2013 the original author or authors.
2
+ * Copyright 2002-2014 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.
@@ -81,7 +81,7 @@ public void setExecutor(Executor defaultExecutor) {
81
81
* Set the {@link BeanFactory} to be used when looking up executors by qualifier.
82
82
*/
83
83
@ Override
84
- public void setBeanFactory (BeanFactory beanFactory ) throws BeansException {
84
+ public void setBeanFactory (BeanFactory beanFactory ) {
85
85
this .beanFactory = beanFactory ;
86
86
}
87
87
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2013 the original author or authors.
2
+ * Copyright 2002-2014 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,11 +62,11 @@ public class AsyncExecutionInterceptor extends AsyncExecutionAspectSupport
62
62
63
63
/**
64
64
* Create a new {@code AsyncExecutionInterceptor}.
65
- * @param executor the {@link Executor} (typically a Spring {@link AsyncTaskExecutor}
65
+ * @param defaultExecutor the {@link Executor} (typically a Spring {@link AsyncTaskExecutor}
66
66
* or {@link java.util.concurrent.ExecutorService}) to delegate to.
67
67
*/
68
- public AsyncExecutionInterceptor (Executor executor ) {
69
- super (executor );
68
+ public AsyncExecutionInterceptor (Executor defaultExecutor ) {
69
+ super (defaultExecutor );
70
70
}
71
71
72
72
@@ -119,8 +119,8 @@ public Object call() throws Exception {
119
119
* Subclasses may override to provide support for extracting qualifier information,
120
120
* e.g. via an annotation on the given method.
121
121
* @return always {@code null}
122
- * @see #determineAsyncExecutor(Method)
123
122
* @since 3.1.2
123
+ * @see #determineAsyncExecutor(Method)
124
124
*/
125
125
@ Override
126
126
protected String getExecutorQualifier (Method method ) {
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ public enum SpelMessage {
147
147
"The value ''{0}'' cannot be parsed as a long" ),
148
148
149
149
INVALID_FIRST_OPERAND_FOR_MATCHES_OPERATOR (Kind .ERROR , 1037 ,
150
- "First operand to matches operator must be a string. ''{0}'' is not" ),
150
+ "First operand to matches operator must be a string. ''{0}'' is not" ),
151
151
152
152
INVALID_SECOND_OPERAND_FOR_MATCHES_OPERATOR (Kind .ERROR , 1038 ,
153
153
"Second operand to matches operator must be a string. ''{0}'' is not" ),
@@ -166,7 +166,7 @@ public enum SpelMessage {
166
166
"Problem parsing right operand" ),
167
167
168
168
NOT_EXPECTED_TOKEN (Kind .ERROR , 1043 ,
169
- "Unexpected token. Expected ''{0}'' but was ''{1}''" ),
169
+ "Unexpected token. Expected ''{0}'' but was ''{1}''" ),
170
170
171
171
OOD (Kind .ERROR , 1044 ,
172
172
"Unexpectedly ran out of input" ),
You can’t perform that action at this time.
0 commit comments