Skip to content

Commit

Permalink
Make ForwardingStandardJavaFileManager public.
Browse files Browse the repository at this point in the history
RELNOTES=Make `ForwardingStandardJavaFileManager` public.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=223862220
  • Loading branch information
netdpb authored and ronshapiro committed Dec 6, 2018
1 parent 43a513a commit acf6ae7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
* Forwards calls to a given {@link StandardJavaFileManager}. Subclasses of this class might
* override some of these methods and might also provide additional fields and methods.
*/
class ForwardingStandardJavaFileManager extends ForwardingJavaFileManager<StandardJavaFileManager>
implements StandardJavaFileManager {
public class ForwardingStandardJavaFileManager
extends ForwardingJavaFileManager<StandardJavaFileManager> implements StandardJavaFileManager {

/**
* Creates a new instance of ForwardingStandardJavaFileManager.
*
* @param fileManager delegate to this file manager
*/
ForwardingStandardJavaFileManager(StandardJavaFileManager fileManager) {
protected ForwardingStandardJavaFileManager(StandardJavaFileManager fileManager) {
super(fileManager);
}

Expand Down

0 comments on commit acf6ae7

Please sign in to comment.