aboutsummaryrefslogtreecommitdiff
path: root/src/stubs/com/sun/tools/javac/file/BaseFileObject.java
blob: d072fc33f23e569a3f29629aba98c5d404379e9f (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * 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 javax.tools.JavaFileObject;

public abstract class BaseFileObject implements JavaFileObject {
	protected BaseFileObject(JavacFileManager fileManager) {}
}