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
b7ac5f2e
Commit
b7ac5f2e
authored
Jul 28, 2017
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish "Make JarURLConnection return entry's last modified time"
Closes gh-9893
parent
7c7259be
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
JarURLConnection.java
...org/springframework/boot/loader/jar/JarURLConnection.java
+3
-4
No files found.
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/JarURLConnection.java
View file @
b7ac5f2e
...
...
@@ -237,16 +237,15 @@ final class JarURLConnection extends java.net.JarURLConnection {
@Override
public
long
getLastModified
()
{
int
defaultTime
=
0
;
if
(
this
.
jarFile
==
null
||
this
.
jarEntryName
.
isEmpty
())
{
return
defaultTime
;
return
0
;
}
try
{
JarEntry
entry
=
getJarEntry
();
return
(
entry
==
null
?
defaultTime
:
entry
.
getTime
());
return
(
entry
==
null
?
0
:
entry
.
getTime
());
}
catch
(
IOException
ex
)
{
return
defaultTime
;
return
0
;
}
}
...
...
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