From: Kui Liu Date: Tue, 21 Aug 2018 15:32:54 +0000 (+0200) Subject: Change the mehtod name "containsField" to "findsField". X-Git-Tag: V1_9_2RC3~11 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b0bd12a6f1efa815445ba3c9356d9781b4f1baaf;p=aspectj.git Change the mehtod name "containsField" to "findsField". 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 --- diff --git a/bcel-builder/src/org/aspectj/apache/bcel/generic/ClassGen.java b/bcel-builder/src/org/aspectj/apache/bcel/generic/ClassGen.java index f12bd4491..4ba767d97 100644 --- a/bcel-builder/src/org/aspectj/apache/bcel/generic/ClassGen.java +++ b/bcel-builder/src/org/aspectj/apache/bcel/generic/ClassGen.java @@ -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;