(doc) (#417)
Fixing couple of dangling javadocs, converted to comments.
This commit is contained in:
parent
abc2681037
commit
233711f860
|
@ -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");
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue