File: compilation.patch

package info (click to toggle)
lombok 1.18.42-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,704 kB
  • sloc: java: 98,970; xml: 3,314; sh: 63; ansic: 16; makefile: 10
file content (14 lines) | stat: -rw-r--r-- 528 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Fixes a compilation error (due to differences between ecj and javac?)
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/src/core/lombok/core/configuration/ConfigurationFile.java
+++ b/src/core/lombok/core/configuration/ConfigurationFile.java
@@ -277,7 +277,7 @@
 						ZipEntry entry = zip.getNextEntry();
 						if (entry == null) return null;
 						if (entry.getName().equals(file.getPath())) {
-							return read(zip);
+							return ConfigurationFile.read(zip);
 						}
 					}
 				} finally {