Change directory name to javadoc

Signed-off-by: Chris Cromer <chris@cromer.cl>
This commit is contained in:
2019-09-21 20:43:37 -03:00
parent ca46991813
commit 5f3a2df8cf
4 changed files with 4 additions and 7 deletions

View File

@@ -27,10 +27,6 @@ import java.util.logging.Logger;
* This class handles loading the images and subimages
*/
public class Sheet implements Constantes {
/**
* The logger
*/
Logger logger;
/**
* A list of all the tile in the collection
*/
@@ -43,7 +39,7 @@ public class Sheet implements Constantes {
*/
public Sheet(String path, int height, int width) {
images = new ArrayList<>();
logger = getLogger(this.getClass(), IMAGE_LOG_LEVEL);
Logger logger = getLogger(this.getClass(), IMAGE_LOG_LEVEL);
try {
BufferedImage image = ImageIO.read(getClass().getResourceAsStream(path));