Remove duplicate words in documentation and polish Javadoc

This commit is contained in:
Sam Brannen
2020-03-31 11:49:15 +02:00
parent 53106d5741
commit e26764d249
94 changed files with 213 additions and 213 deletions

View File

@@ -86,8 +86,8 @@ public interface EvaluationContext {
/**
* Set a named variable within this evaluation context to a specified value.
* @param name variable to set
* @param value value to be placed in the variable
* @param name the name of the variable to set
* @param value the value to be placed in the variable
*/
void setVariable(String name, @Nullable Object value);

View File

@@ -190,8 +190,8 @@ public final class SpelCompiler implements Opcodes {
* because they anchor compiled classes in memory and prevent GC. If you have expressions
* continually recompiling over time then by replacing the classloader periodically
* at least some of the older variants can be garbage collected.
* @param name name of the class
* @param bytes bytecode for the class
* @param name the name of the class
* @param bytes the bytecode for the class
* @return the Class object for the compiled expression
*/
@SuppressWarnings("unchecked")