Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
bc5a4bcc
Commit
bc5a4bcc
authored
Jun 03, 2014
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compiler warnings
parent
77eaa9b2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
JobLauncherCommandLineRunnerTests.java
...utoconfigure/batch/JobLauncherCommandLineRunnerTests.java
+2
-2
AbstractJpaAutoConfigurationTests.java
...oconfigure/orm/jpa/AbstractJpaAutoConfigurationTests.java
+1
-0
AgentAttacher.java
.../org/springframework/boot/loader/tools/AgentAttacher.java
+1
-1
No files found.
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/batch/JobLauncherCommandLineRunnerTests.java
View file @
bc5a4bcc
...
...
@@ -16,6 +16,8 @@
package
org
.
springframework
.
boot
.
autoconfigure
.
batch
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
org.junit.Before
;
import
org.junit.Test
;
import
org.springframework.batch.core.Job
;
...
...
@@ -44,8 +46,6 @@ import org.springframework.context.annotation.Configuration;
import
org.springframework.core.task.SyncTaskExecutor
;
import
org.springframework.transaction.PlatformTransactionManager
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
/**
* Tests for {@link JobLauncherCommandLineRunner}.
*
...
...
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/orm/jpa/AbstractJpaAutoConfigurationTests.java
View file @
bc5a4bcc
...
...
@@ -262,6 +262,7 @@ public abstract class AbstractJpaAutoConfigurationTests {
}
@SuppressWarnings
(
"serial"
)
static
class
CustomJpaTransactionManager
extends
JpaTransactionManager
{
}
...
...
spring-boot-tools/spring-boot-loader-tools/src/main/java/org/springframework/boot/loader/tools/AgentAttacher.java
View file @
bc5a4bcc
...
...
@@ -43,7 +43,7 @@ public abstract class AgentAttacher {
vmClass
.
getDeclaredMethod
(
"detach"
).
invoke
(
vm
);
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Unable to attach
Spring Loaded
to the JVM"
,
ex
);
throw
new
RuntimeException
(
"Unable to attach
agent
to the JVM"
,
ex
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment