We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f547d commit a5369d0Copy full SHA for a5369d0
java-compiler-testing/src/main/java/io/github/ascopes/jct/assertions/JctCompilationAssert.java
@@ -264,7 +264,11 @@ public OutputContainerGroupAssert sourceOutput() {
264
*
265
* @return the assertions to perform on the header outputs.
266
* @throws AssertionError if the compilation is null.
267
+ * @deprecated this method is rarely needed, so is being removed in v1.0.0. Use
268
+ * {@link #outputGroup(Location)}, passing {@link StandardLocation#NATIVE_HEADER_OUTPUT} as the
269
+ * first parameter instead.
270
*/
271
+ @Deprecated(since = "0.6.0", forRemoval = true)
272
public OutputContainerGroupAssert generatedHeaders() {
273
return outputGroup(StandardLocation.NATIVE_HEADER_OUTPUT);
274
}
0 commit comments