diff options
author | Jerry James <loganjerry@gmail.com> | 2020-09-14 08:25:20 -0600 |
---|---|---|
committer | Jerry James <loganjerry@gmail.com> | 2020-09-14 08:25:20 -0600 |
commit | f8f117808bef16efd520803636c6841332e83c49 (patch) | |
tree | 189a20fe29beae3e6aa0d25261853cdc5230d05e /asm | |
parent | f7f7656f81f9a84f92920492ab619accfaeb1ccf (diff) | |
download | aspectj-f8f117808bef16efd520803636c6841332e83c49.tar.gz aspectj-f8f117808bef16efd520803636c6841332e83c49.zip |
Fix misplaced or incorrectly nested HTML tags
Diffstat (limited to 'asm')
-rw-r--r-- | asm/src/main/java/org/aspectj/asm/IRelationshipMap.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/asm/src/main/java/org/aspectj/asm/IRelationshipMap.java b/asm/src/main/java/org/aspectj/asm/IRelationshipMap.java index fdaab0ad6..9d03aef75 100644 --- a/asm/src/main/java/org/aspectj/asm/IRelationshipMap.java +++ b/asm/src/main/java/org/aspectj/asm/IRelationshipMap.java @@ -21,15 +21,16 @@ import java.util.Set; * the list or relationships is uniquely identified by a kind and a relationship name. For example, the advice affecting a * particular shadow (e.g. method call) can be retrieved by calling <CODE>get</CODE> on the handle for that method. Symmetrically * the method call shadows that an advice affects can be retrieved. - * <p> * * <p> * The elements can be stored and looked up as IProgramElement(s), in which cases the element corresponding to the handle is looked * up in the containment hierarchy. + * </p> * * <p> * put/get methods taking IProgramElement as a parameter are for convenience only. They work identically to calling their * counterparts with IProgramElement.getIdentifierHandle() + * </p> * * @author Mik Kersten * @author Andy Clement |