Skip to content
Snippets Groups Projects
Commit 9a2d99e7 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

default constructor to silence javadoc warning

parent d807b772
No related branches found
No related tags found
No related merge requests found
...@@ -4,8 +4,8 @@ package edu.nps.moves.dis7.entities; ...@@ -4,8 +4,8 @@ package edu.nps.moves.dis7.entities;
import edu.nps.moves.dis7.pdus.EntityType; import edu.nps.moves.dis7.pdus.EntityType;
import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.io.IOException;
import java.lang.reflect.Constructor; import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
import java.util.HashMap; import java.util.HashMap;
...@@ -15,6 +15,11 @@ import java.util.Properties; ...@@ -15,6 +15,11 @@ import java.util.Properties;
/** Utility class */ /** Utility class */
public class EntityTypeFactory public class EntityTypeFactory
{ {
/** default constructor */
public EntityTypeFactory()
{
// initialization code here
}
private static Map<Integer,String> uid2ClassNameMap = new HashMap<>(); private static Map<Integer,String> uid2ClassNameMap = new HashMap<>();
static { static {
try (InputStream ins = EntityTypeFactory.class.getResourceAsStream("uid2EntityClass.properties")) { try (InputStream ins = EntityTypeFactory.class.getResourceAsStream("uid2EntityClass.properties")) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment