Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2020-06-11 06:46:59 +0000
committerJay Arthanareeswaran2020-06-12 08:54:23 +0000
commitd190758dff5828ee7573c258060fb0afa733c921 (patch)
treee2321cc20a689c986422d604079ab2be913f6051
parent507b2ed26269623efabbe7b5116c033807bcad9c (diff)
downloadeclipse.jdt.core-d190758dff5828ee7573c258060fb0afa733c921.tar.gz
eclipse.jdt.core-d190758dff5828ee7573c258060fb0afa733c921.tar.xz
eclipse.jdt.core-d190758dff5828ee7573c258060fb0afa733c921.zip
Change-Id: Ibbfb775dc082a91e7d7189f2159b3b39a4e4a0e6 Signed-off-by: Jay Arthanareeswaran <jarthana@in.ibm.com>
-rw-r--r--org.eclipse.jdt.compiler.apt/src/org/eclipse/jdt/internal/compiler/apt/util/JrtFileSystem.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jdt.compiler.apt/src/org/eclipse/jdt/internal/compiler/apt/util/JrtFileSystem.java b/org.eclipse.jdt.compiler.apt/src/org/eclipse/jdt/internal/compiler/apt/util/JrtFileSystem.java
index b22b97a203..755a9e5f1c 100644
--- a/org.eclipse.jdt.compiler.apt/src/org/eclipse/jdt/internal/compiler/apt/util/JrtFileSystem.java
+++ b/org.eclipse.jdt.compiler.apt/src/org/eclipse/jdt/internal/compiler/apt/util/JrtFileSystem.java
@@ -143,6 +143,7 @@ public class JrtFileSystem extends Archive {
private JrtFileObject(File file, Path path, String module, Charset charset) {
super(file, path.toString(), charset);
this.path = path;
+ this.module = module;
}
@Override

Back to the top