Skip to content

Commit acf6ae7

Browse files
netdpbronshapiro
authored andcommitted
Make ForwardingStandardJavaFileManager public.
RELNOTES=Make `ForwardingStandardJavaFileManager` public. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=223862220
1 parent 43a513a commit acf6ae7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/com/google/testing/compile/ForwardingStandardJavaFileManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
* Forwards calls to a given {@link StandardJavaFileManager}. Subclasses of this class might
3131
* override some of these methods and might also provide additional fields and methods.
3232
*/
33-
class ForwardingStandardJavaFileManager extends ForwardingJavaFileManager<StandardJavaFileManager>
34-
implements StandardJavaFileManager {
33+
public class ForwardingStandardJavaFileManager
34+
extends ForwardingJavaFileManager<StandardJavaFileManager> implements StandardJavaFileManager {
3535

3636
/**
3737
* Creates a new instance of ForwardingStandardJavaFileManager.
3838
*
3939
* @param fileManager delegate to this file manager
4040
*/
41-
ForwardingStandardJavaFileManager(StandardJavaFileManager fileManager) {
41+
protected ForwardingStandardJavaFileManager(StandardJavaFileManager fileManager) {
4242
super(fileManager);
4343
}
4444

0 commit comments

Comments
 (0)