Skip to content

Commit

Permalink
Replace IfBuildProfile in UnlessBuildProfile javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
rjtmahinay committed Jun 11, 2023
1 parent 55fb3b2 commit 7a21970
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,29 @@
* Enabled when "dev" profile is <b>not</b> active:
*
* &#064;ApplicationScoped
* &#064;IfBuildProfile("dev")
* &#064;UnlessBuildProfile("dev")
* public class NotDevBean {
* }
*
* Enabled when both "build" and "dev" profiles are <b>not</b> active:
*
* &#064;ApplicationScoped
* &#064;IfBuildProfile(allOf = {"build", "dev"})
* &#064;UnlessBuildProfile(allOf = {"build", "dev"})
* public class NotBuildDevBean {
* }
*
* Enabled if either "build" or "dev" profile is <b>not</b> active:
*
* &#064;ApplicationScoped
* &#064;IfBuildProfile(anyOf = {"build", "dev"})
* &#064;UnlessBuildProfile(anyOf = {"build", "dev"})
* public class NotBuildDevBean {
* }
*
* Enabled when both "build" and "dev" profiles are <b>not</b> active and either "test" or "prod" profile is
* <b>not</b> active:
*
* &#064;ApplicationScoped
* &#064;IfBuildProfile(allOf = {"build", "dev"}, anyOf = {"test", "prod"})
* &#064;UnlessBuildProfile(allOf = {"build", "dev"}, anyOf = {"test", "prod"})
* public class NotBuildDevBean {
* }
* </pre>
Expand Down

0 comments on commit 7a21970

Please sign in to comment.