File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/main/java/de/rub/nds/modifiablevariable/util Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1818import org .apache .logging .log4j .Logger ;
1919
2020/**
21- *
21+ *
2222 */
2323public class ModifiableVariableAnalyzer {
2424
2525 private static final Logger LOGGER = LogManager .getLogger (ModifiableVariableAnalyzer .class );
2626
2727 /**
2828 * Lists all the modifiable variables declared in the given class
29- *
29+ *
3030 * @param object
3131 * Analyzed object
3232 * @return A list of modifiable variable fields for the given object
@@ -37,7 +37,7 @@ public static List<Field> getAllModifiableVariableFields(Object object) {
3737
3838 /**
3939 * Returns a random field representing a modifiable variable in the given class
40- *
40+ *
4141 * @param object
4242 * Analyzed object
4343 * @return A random field representing a modifiable variable
@@ -50,7 +50,7 @@ public static Field getRandomModifiableVariableField(Object object) {
5050
5151 /**
5252 * Returns true if the given object contains a modifiable variable
53- *
53+ *
5454 * @param object
5555 * Analyzed object
5656 * @return True if the object contains a modifiable variable.
@@ -62,7 +62,7 @@ public static boolean isModifiableVariableHolder(Object object) {
6262
6363 /**
6464 * Returns a list of all ModifiableVariableFields (object-field representations) for a given object.
65- *
65+ *
6666 * @param object
6767 * Analyzed object
6868 * @return A list of objects with their modifiable variable fields (only objects with modifiable variables
@@ -81,7 +81,7 @@ public static List<ModifiableVariableField> getAllModifiableVariableFieldsRecurs
8181
8282 /**
8383 * Returns a list of all the modifiable variable holders in the object, including this instance.
84- *
84+ *
8585 * @param object
8686 * Analyzed object
8787 * @return A list of objects with their modifiable variable fields (only objects with modifiable variables
You can’t perform that action at this time.
0 commit comments