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
e48af31c
Commit
e48af31c
authored
Aug 25, 2020
by
Johnny Lim
Committed by
Stephane Nicoll
Aug 26, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
See gh-23081
parent
4320b3a9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
6 deletions
+5
-6
Include.java
.../org/springframework/boot/actuate/trace/http/Include.java
+0
-1
SharedMetadataReaderFactoryContextInitializer.java
...figure/SharedMetadataReaderFactoryContextInitializer.java
+1
-1
Repackager.java
...ava/org/springframework/boot/loader/tools/Repackager.java
+2
-2
ForkedClassPath.java
...framework/boot/testsupport/classpath/ForkedClassPath.java
+1
-1
ConfigFileApplicationListener.java
...rk/boot/context/config/ConfigFileApplicationListener.java
+1
-1
No files found.
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/http/Include.java
View file @
e48af31c
...
@@ -57,7 +57,6 @@ public enum Include {
...
@@ -57,7 +57,6 @@ public enum Include {
PRINCIPAL
,
PRINCIPAL
,
/**
/**
*
* Include the remote address.
* Include the remote address.
*/
*/
REMOTE_ADDRESS
,
REMOTE_ADDRESS
,
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/SharedMetadataReaderFactoryContextInitializer.java
View file @
e48af31c
...
@@ -76,7 +76,7 @@ class SharedMetadataReaderFactoryContextInitializer
...
@@ -76,7 +76,7 @@ class SharedMetadataReaderFactoryContextInitializer
static
class
CachingMetadataReaderFactoryPostProcessor
static
class
CachingMetadataReaderFactoryPostProcessor
implements
BeanDefinitionRegistryPostProcessor
,
PriorityOrdered
{
implements
BeanDefinitionRegistryPostProcessor
,
PriorityOrdered
{
private
ConfigurableApplicationContext
context
;
private
final
ConfigurableApplicationContext
context
;
CachingMetadataReaderFactoryPostProcessor
(
ConfigurableApplicationContext
context
)
{
CachingMetadataReaderFactoryPostProcessor
(
ConfigurableApplicationContext
context
)
{
this
.
context
=
context
;
this
.
context
=
context
;
...
...
spring-boot-project/spring-boot-tools/spring-boot-loader-tools/src/main/java/org/springframework/boot/loader/tools/Repackager.java
View file @
e48af31c
...
@@ -101,8 +101,8 @@ public class Repackager extends Packager {
...
@@ -101,8 +101,8 @@ public class Repackager extends Packager {
public
void
repackage
(
File
destination
,
Libraries
libraries
,
LaunchScript
launchScript
,
FileTime
lastModifiedTime
)
public
void
repackage
(
File
destination
,
Libraries
libraries
,
LaunchScript
launchScript
,
FileTime
lastModifiedTime
)
throws
IOException
{
throws
IOException
{
Assert
.
isTrue
(
destination
!=
null
&&
!
destination
.
isDirectory
(),
"Invalid destination"
);
Assert
.
isTrue
(
destination
!=
null
&&
!
destination
.
isDirectory
(),
"Invalid destination"
);
getLayout
();
// get layout early
Layout
layout
=
getLayout
();
// get layout early
if
(
lastModifiedTime
!=
null
&&
getLayout
()
instanceof
War
)
{
if
(
lastModifiedTime
!=
null
&&
layout
instanceof
War
)
{
throw
new
IllegalStateException
(
"Reproducible repackaging is not supported with war packaging"
);
throw
new
IllegalStateException
(
"Reproducible repackaging is not supported with war packaging"
);
}
}
destination
=
destination
.
getAbsoluteFile
();
destination
=
destination
.
getAbsoluteFile
();
...
...
spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/classpath/ForkedClassPath.java
View file @
e48af31c
...
@@ -25,7 +25,7 @@ import java.lang.annotation.Target;
...
@@ -25,7 +25,7 @@ import java.lang.annotation.Target;
import
org.junit.jupiter.api.extension.ExtendWith
;
import
org.junit.jupiter.api.extension.ExtendWith
;
/**
/**
* Annotation used to fork the classpath. This can be helpful were neither
* Annotation used to fork the classpath. This can be helpful w
h
ere neither
* {@link ClassPathExclusions} or {@link ClassPathOverrides} are needed, but just a copy
* {@link ClassPathExclusions} or {@link ClassPathOverrides} are needed, but just a copy
* of the classpath.
* of the classpath.
*
*
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigFileApplicationListener.java
View file @
e48af31c
...
@@ -259,7 +259,7 @@ public class ConfigFileApplicationListener implements EnvironmentPostProcessor,
...
@@ -259,7 +259,7 @@ public class ConfigFileApplicationListener implements EnvironmentPostProcessor,
*/
*/
private
static
class
PropertySourceOrderingPostProcessor
implements
BeanFactoryPostProcessor
,
Ordered
{
private
static
class
PropertySourceOrderingPostProcessor
implements
BeanFactoryPostProcessor
,
Ordered
{
private
ConfigurableApplicationContext
context
;
private
final
ConfigurableApplicationContext
context
;
PropertySourceOrderingPostProcessor
(
ConfigurableApplicationContext
context
)
{
PropertySourceOrderingPostProcessor
(
ConfigurableApplicationContext
context
)
{
this
.
context
=
context
;
this
.
context
=
context
;
...
...
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