blob: c1ee6074687ecfce8909c142cfff42b7b7fb2678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* These are stub versions of various bits of javac-internal API (for various different versions of javac). Lombok is compiled against these.
*/
package com.sun.tools.javac.file;
import java.nio.file.Path;
import javax.tools.JavaFileObject;
public abstract class PathFileObject implements JavaFileObject {
protected PathFileObject(BaseFileManager fileManager, Path path) {}
}
|