]> source.dussan.org Git - aspectj.git/commitdiff
Change the mehtod name "containsField" to "findsField".
authorKui Liu <brucekuiliu@gmail.com>
Tue, 21 Aug 2018 15:32:54 +0000 (17:32 +0200)
committerAndy Clement <aclement@pivotal.io>
Thu, 11 Oct 2018 18:00:54 +0000 (11:00 -0700)
The method implements finding a field object in the 'fieldsList' with a given name. If found, return the found field object, otherwise return null.
Thus, rename the method as "findsField" should be more clear than "containsField" since "containsField" is prone to ask whether the "fieldsFile" contains a field or not and return true or false.

Signed-off-by: Kui Liu <brucekuiliu@gmail.com>
bcel-builder/src/org/aspectj/apache/bcel/generic/ClassGen.java

index f12bd4491a9e33721335e68d493ffdf8118adf35..4ba767d97743608c04773c39d2c689f1861c0958 100644 (file)
@@ -270,7 +270,7 @@ public class ClassGen extends Modifiers implements Cloneable {
        /**
         * @return field object with given name, or null if not found
         */
-       public Field containsField(String name) {
+       public Field findsField(String name) {
                for (Field field : fieldsList) {
                        if (field.getName().equals(name)) {
                                return field;