Skip to content

Commit 5a00a5a

Browse files
authored
Update JctFileManager.java with missing nullability annotations
Fix missing nullability annotations Signed-off-by: ascopes <73482956+ascopes@users.noreply.github.com>
1 parent 0b6a30d commit 5a00a5a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

java-compiler-testing/src/main/java/io/github/ascopes/jct/filemanagers/JctFileManager.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ public interface JctFileManager extends JavaFileManager {
113113
* @param location the package oriented location.
114114
* @return the container group, or null if one does not exist.
115115
*/
116+
@Nullable
116117
PackageContainerGroup getPackageContainerGroup(Location location);
117118

118119
/**
@@ -128,6 +129,7 @@ public interface JctFileManager extends JavaFileManager {
128129
* @param location the module oriented location.
129130
* @return the container group, or null if one does not exist.
130131
*/
132+
@Nullable
131133
ModuleContainerGroup getModuleContainerGroup(Location location);
132134

133135
/**
@@ -143,6 +145,7 @@ public interface JctFileManager extends JavaFileManager {
143145
* @param location the output oriented location.
144146
* @return the container group, or null if one does not exist.
145147
*/
148+
@Nullable
146149
OutputContainerGroup getOutputContainerGroup(Location location);
147150

148151
/**

0 commit comments

Comments
 (0)