#107 Double Checked Locking example JavaDoc

This commit is contained in:
Ilkka Seppala
2015-08-18 22:29:35 +03:00
parent e71f2279f0
commit 57e702db4f
4 changed files with 24 additions and 3 deletions
@@ -1,6 +1,12 @@
package com.iluwatar.doublechecked.locking;
/**
*
* Item
*
*/
public class Item {
String name;
int level;
private String name;
private int level;
}