Skip to content

Commit

Permalink
jdk9: possible fix for errorprone
Browse files Browse the repository at this point in the history
  • Loading branch information
rspilker committed Jun 13, 2017
1 parent 33dc6a2 commit bd7528b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/lombok/javac/apt/LombokFileObjects.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public Java9Compiler(JavaFileManager jfm) {
@Override public JavaFileObject wrap(LombokFileObject fileObject) {
URI uri = fileObject.toUri();
if (uri.getScheme() == null) {
uri = URI.create("file://" + uri);
uri = URI.create("file:///" + uri);
}
Path path;
try {
Expand Down

0 comments on commit bd7528b

Please sign in to comment.