File tree 2 files changed +3
-2
lines changed
spring-jdbc/src/main/java/org/springframework/jdbc/core/simple
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 21
21
import java .util .List ;
22
22
import java .util .Map ;
23
23
import java .util .Set ;
24
-
25
24
import java .util .concurrent .atomic .AtomicBoolean ;
25
+
26
26
import javax .sql .DataSource ;
27
27
28
28
import org .apache .commons .logging .Log ;
@@ -283,7 +283,7 @@ public final void compile() throws InvalidDataAccessApiUsageException {
283
283
if (getProcedureName () == null ) {
284
284
throw new InvalidDataAccessApiUsageException ("Procedure or Function name is required" );
285
285
}
286
- if (compiled .compareAndSet (false , true )) {
286
+ if (this . compiled .compareAndSet (false , true )) {
287
287
try {
288
288
this .jdbcTemplate .afterPropertiesSet ();
289
289
}
Original file line number Diff line number Diff line change 28
28
import java .util .List ;
29
29
import java .util .Locale ;
30
30
import java .util .Map ;
31
+ import java .util .concurrent .atomic .AtomicBoolean ;
31
32
32
33
import java .util .concurrent .atomic .AtomicBoolean ;
33
34
import javax .sql .DataSource ;
You can’t perform that action at this time.
0 commit comments