From d6f73994c2385c98b9d70853f684866861364d80 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Fri, 12 Aug 2022 12:14:18 +0200 Subject: [PATCH] Fix malformed HTML in CGLIB javadoc See gh-28955 --- .../java/org/springframework/cglib/core/GeneratorStrategy.java | 2 +- .../java/org/springframework/cglib/reflect/MethodDelegate.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/cglib/core/GeneratorStrategy.java b/spring-core/src/main/java/org/springframework/cglib/core/GeneratorStrategy.java index 5152fc9030..c345c4449d 100644 --- a/spring-core/src/main/java/org/springframework/cglib/core/GeneratorStrategy.java +++ b/spring-core/src/main/java/org/springframework/cglib/core/GeneratorStrategy.java @@ -16,7 +16,7 @@ package org.springframework.cglib.core; /** - * The GeneratorStrategyGeneratorStrategy is responsible for taking a * {@link ClassGenerator} and producing a byte array containing the * data for the generated Class. By providing your * own strategy you may examine or modify the generated class before diff --git a/spring-core/src/main/java/org/springframework/cglib/reflect/MethodDelegate.java b/spring-core/src/main/java/org/springframework/cglib/reflect/MethodDelegate.java index bfe8bcd592..7623fd633a 100644 --- a/spring-core/src/main/java/org/springframework/cglib/reflect/MethodDelegate.java +++ b/spring-core/src/main/java/org/springframework/cglib/reflect/MethodDelegate.java @@ -65,7 +65,7 @@ import org.springframework.asm.Type; * } * * public int alternateMain( String[] args ) { - * for (int i = 0; i < args.length; i++) { + * for (int i = 0; i < args.length; i++) { * System.out.println( args[i] ); * } * return args.length;