Skip to content

Commit 08fad86

Browse files
committed
Update javadoc replacing at with safe character
1 parent dd7a17f commit 08fad86

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

inject/src/main/java/io/avaje/inject/Bean.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@
1313
*
1414
* <pre>{@code
1515
*
16-
* @Factory
16+
* Factory
1717
* class Configuration {
1818
*
1919
* private final StartConfig startConfig;
2020
*
21-
* @Inject
21+
* Inject
2222
* Configuration(StartConfig startConfig) {
2323
* this.startConfig = startConfig;
2424
* }
2525
*
26-
* @Bean
26+
* Bean
2727
* Foo buildFoo() {
2828
* ...
2929
* return new Foo(...);
3030
* }
3131
*
32-
* @Bean
32+
* Bean
3333
* Bar buildBar(Foo foo, Bazz bazz) {
3434
* ...
3535
* return new Bar(...);

inject/src/main/java/io/avaje/inject/BeanContextBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*
2929
* <pre>{@code
3030
*
31-
* @Test
31+
* Test
3232
* public void someComponentTest() {
3333
*
3434
* MyRedisApi mockRedis = mock(MyRedisApi.class);
@@ -116,7 +116,7 @@ public BeanContextBuilder withNoShutdownHook() {
116116
*
117117
* <pre>{@code
118118
*
119-
* @Test
119+
* Test
120120
* public void someComponentTest() {
121121
*
122122
* EmailServiceApi mockEmailService = mock(EmailServiceApi.class);

inject/src/main/java/io/avaje/inject/ContextModule.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* import io.dinject.ContextModule;
2424
*
25-
* @ContextModule(name = "feature-toggle")
25+
* ContextModule(name = "feature-toggle")
2626
* public interface FeatureToggle {
2727
*
2828
* boolean isEnabled(String key);
@@ -46,7 +46,7 @@
4646
*
4747
* import io.dinject.ContextModule;
4848
*
49-
* @ContextModule(name = "job-system", dependsOn = {"feature-toggle"})
49+
* ContextModule(name = "job-system", dependsOn = {"feature-toggle"})
5050
* public interface JobSystem {
5151
*
5252
* ...
@@ -74,14 +74,14 @@
7474
*
7575
* // A module that provides 'email-service' and also 'health-check'.
7676
* // ie. it has bean(s) that implement a health check interface
77-
* @ContextModule(name="email-service", provides={"health-checks"})
77+
* ContextModule(name="email-service", provides={"health-checks"})
7878
*
7979
* // provides beans that implement a health check interface
8080
* // ... wires after 'email-service'
81-
* @ContextModule(name="main", provides={"health-checks"}, dependsOn={"email-service"})
81+
* ContextModule(name="main", provides={"health-checks"}, dependsOn={"email-service"})
8282
*
8383
* // wire this after all modules that provide 'health-checks'
84-
* @ContextModule(name="health-check-service", dependsOn={"health-checks"})
84+
* ContextModule(name="health-check-service", dependsOn={"health-checks"})
8585
*
8686
* }</pre>
8787
*/
@@ -97,7 +97,7 @@
9797
* // wire after a module that is called 'email-service'
9898
* // ... or any module that provides 'email-service'
9999
*
100-
* @ContextModule(name="...", dependsOn={"email-service"})
100+
* ContextModule(name="...", dependsOn={"email-service"})
101101
*
102102
* }</pre>
103103
*/

inject/src/main/java/io/avaje/inject/Factory.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@
2020
*
2121
* <pre>{@code
2222
*
23-
* @Factory
23+
* Factory
2424
* class Configuration {
2525
*
2626
* private final StartConfig startConfig;
2727
*
28-
* @Inject
28+
* Inject
2929
* Configuration(StartConfig startConfig) {
3030
* this.startConfig = startConfig;
3131
* }
3232
*
33-
* @Bean
33+
* Bean
3434
* Foo buildFoo() {
3535
* ...
3636
* return new Foo(...);
3737
* }
3838
*
39-
* @Bean
39+
* Bean
4040
* Bar buildBar(Foo foo, Bazz bazz) {
4141
* ...
4242
* return new Bar(...);

inject/src/main/java/io/avaje/inject/Primary.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
*
1212
* <pre>{@code
1313
*
14-
* @Primary
15-
* @Singleton
14+
* Primary
15+
* Singleton
1616
* class PreferredEmailSender implements EmailSender {
1717
*
1818
* ...

inject/src/main/java/io/avaje/inject/Secondary.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
*
1616
* <pre>{@code
1717
*
18-
* @Secondary
19-
* @Singleton
18+
* Secondary
19+
* Singleton
2020
* class DefaultEmailSender implements EmailSender {
2121
*
2222
* ...
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/**
2-
* DInject API - see {@link io.avaje.inject.SystemContext} and {@link io.avaje.inject.BeanContext}.
2+
* Avaje Inject API - see {@link io.avaje.inject.SystemContext} and {@link io.avaje.inject.BeanContext}.
33
*/
44
package io.avaje.inject;

0 commit comments

Comments
 (0)