mirror of
https://github.com/openjdk/jdk.git
synced 2026-06-01 00:02:37 +00:00
8309870: Using -proc:full should be considered requesting explicit annotation processing
Reviewed-by: jjg
This commit is contained in:
parent
1612b6dc6e
commit
3ce1240ca1
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -1288,7 +1288,10 @@ public class JavaCompiler {
|
||||
options.isSet(PROCESSOR_PATH) ||
|
||||
options.isSet(PROCESSOR_MODULE_PATH) ||
|
||||
options.isSet(PROC, "only") ||
|
||||
options.isSet(PROC, "full") ||
|
||||
options.isSet(A) ||
|
||||
options.isSet(XPRINT);
|
||||
// Skipping -XprintRounds and -XprintProcessorInfo
|
||||
}
|
||||
|
||||
public void setDeferredDiagnosticHandler(Log.DeferredDiagnosticHandler deferredDiagnosticHandler) {
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2006, 2023, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -83,6 +83,11 @@ import static com.sun.tools.javac.main.Option.OptionKind.*;
|
||||
* {@code handleOption} then calls {@link #process process} providing a suitable
|
||||
* {@link OptionHelper} to provide access the compiler state.
|
||||
*
|
||||
*
|
||||
* <p>Maintenance note: when adding new annotation processing related
|
||||
* options, the list of options regarded as requesting explicit
|
||||
* annotation processing in JavaCompiler should be updated.
|
||||
*
|
||||
* <p><b>This is NOT part of any supported API.
|
||||
* If you write code that depends on this, you do so at your own
|
||||
* risk. This code and its internal interfaces are subject to change
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user