@@ -529,7 +529,7 @@ application and particular sets of operations from within several aspects. We re
529
529
defining a "`SystemArchitecture`" aspect that captures common pointcut expressions for
530
530
this purpose. Such an aspect typically resembles the following example:
531
531
532
- [source,java,indent=0,subs="verbatim,quotes ",role="primary"]
532
+ [source,java,indent=0,subs="verbatim",role="primary"]
533
533
.Java
534
534
----
535
535
package com.xyz.someapp;
@@ -591,7 +591,7 @@ this purpose. Such an aspect typically resembles the following example:
591
591
592
592
}
593
593
----
594
- [source,kotlin,indent=0,subs="verbatim,quotes ",role="secondary"]
594
+ [source,kotlin,indent=0,subs="verbatim",role="secondary"]
595
595
.Kotlin
596
596
----
597
597
package com.xyz.someapp
@@ -950,7 +950,7 @@ You can declare before advice in an aspect by using the `@Before` annotation:
950
950
If we use an in-place pointcut expression, we could rewrite the preceding example as the
951
951
following example:
952
952
953
- [source,java,indent=0,subs="verbatim,quotes ",role="primary"]
953
+ [source,java,indent=0,subs="verbatim",role="primary"]
954
954
.Java
955
955
----
956
956
import org.aspectj.lang.annotation.Aspect;
@@ -966,7 +966,7 @@ following example:
966
966
967
967
}
968
968
----
969
- [source,kotlin,indent=0,subs="verbatim,quotes ",role="secondary"]
969
+ [source,kotlin,indent=0,subs="verbatim",role="secondary"]
970
970
.Kotlin
971
971
----
972
972
import org.aspectj.lang.annotation.Aspect
@@ -3681,7 +3681,7 @@ use @AspectJ with <<beans-java, Java configuration>>. Specifically, you can use
3681
3681
The following example shows the profiling aspect, which is not fancy.
3682
3682
It is a time-based profiler that uses the @AspectJ-style of aspect declaration:
3683
3683
3684
- [source,java,indent=0,subs="verbatim,quotes ",role="primary"]
3684
+ [source,java,indent=0,subs="verbatim",role="primary"]
3685
3685
.Java
3686
3686
----
3687
3687
package foo;
@@ -3712,7 +3712,7 @@ It is a time-based profiler that uses the @AspectJ-style of aspect declaration:
3712
3712
public void methodsToBeProfiled(){}
3713
3713
}
3714
3714
----
3715
- [source,kotlin,indent=0,subs="verbatim,quotes ",role="secondary"]
3715
+ [source,kotlin,indent=0,subs="verbatim",role="secondary"]
3716
3716
.Kotlin
3717
3717
----
3718
3718
package foo
0 commit comments