Fixing couple of dangling javadocs, converted to comments.
This commit is contained in:
Ethan Wood 2019-04-12 06:46:36 -06:00 committed by Gary Gregory
parent abc2681037
commit 233711f860
2 changed files with 2 additions and 5 deletions

View File

@ -128,10 +128,7 @@ public class ClassUtils {
* Maps an abbreviation used in array class names to corresponding primitive class name.
*/
private static final Map<String, String> reverseAbbreviationMap;
/**
* Feed abbreviation maps
*/
// Feed abbreviation maps
static {
final Map<String, String> m = new HashMap<>();
m.put("int", "I");

View File

@ -82,7 +82,7 @@ public abstract class LazyInitializer<T> implements ConcurrentInitializer<T> {
private static final Object NO_INIT = new Object();
@SuppressWarnings("unchecked")
/** Stores the managed object. */
// Stores the managed object.
private volatile T object = (T) NO_INIT;
/**