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
65c974d7
Commit
65c974d7
authored
Feb 26, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2557 from izeye/elasticsearch
* elasticsearch: Remove unnecessary if statement
parents
a48296f5
0073ab07
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
ElasticsearchAutoConfiguration.java
...nfigure/elasticsearch/ElasticsearchAutoConfiguration.java
+8
-10
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/elasticsearch/ElasticsearchAutoConfiguration.java
View file @
65c974d7
...
...
@@ -100,16 +100,14 @@ public class ElasticsearchAutoConfiguration implements DisposableBean {
if
(
logger
.
isInfoEnabled
())
{
logger
.
info
(
"Closing Elasticsearch client"
);
}
if
(
this
.
releasable
!=
null
)
{
try
{
this
.
releasable
.
close
();
}
catch
(
NoSuchMethodError
ex
)
{
// Earlier versions of Elasticsearch had a different method name
ReflectionUtils
.
invokeMethod
(
ReflectionUtils
.
findMethod
(
Releasable
.
class
,
"release"
),
this
.
releasable
);
}
try
{
this
.
releasable
.
close
();
}
catch
(
NoSuchMethodError
ex
)
{
// Earlier versions of Elasticsearch had a different method name
ReflectionUtils
.
invokeMethod
(
ReflectionUtils
.
findMethod
(
Releasable
.
class
,
"release"
),
this
.
releasable
);
}
}
catch
(
final
Exception
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