From 90bff0b6039074b304205878b81770dea727150a Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 24 Mar 2015 18:24:27 -0700 Subject: [PATCH] Fix outdated RandomAccessJarFile documentation Fixes gh-2598 --- .../src/main/asciidoc/appendix-executable-jar-format.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/appendix-executable-jar-format.adoc b/spring-boot-docs/src/main/asciidoc/appendix-executable-jar-format.adoc index dce0c18437..aed8cbeae3 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-executable-jar-format.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-executable-jar-format.adoc @@ -124,9 +124,9 @@ need to read all entry data into memory. ==== Compatibility with the standard Java "`JarFile`" Spring Boot Loader strives to remain compatible with existing code and libraries. `org.springframework.boot.loader.jar.JarFile` extends from `java.util.jar.JarFile` and -should work as a drop-in replacement. The `RandomAccessJarFile.getURL()` method will -return a `URL` that opens a `java.net.JarURLConnection` compatible connection. -`RandomAccessJarFile` URLs can be used with Java's `URLClassLoader`. +should work as a drop-in replacement. The `getURL()` method will return a `URL` that +opens a `java.net.JarURLConnection` compatible connection and can be used with Java's +`URLClassLoader`.