Skip to content

Commit

Permalink
Split JLPCActorFactory into two classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
laforge49 committed Mar 26, 2012
1 parent d8e2b06 commit ad9ccf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -7,13 +7,13 @@
/**
* Creates a JLPCActor.
*/
abstract public class tJLPCActorFactory extends ActorFactory {
abstract public class JLPCActorFactory extends ActorFactory {
/**
* Create an ActorFactory.
*
* @param actorType The actor type.
*/
public tJLPCActorFactory(String actorType) {
public JLPCActorFactory(String actorType) {
super(actorType);
}

Expand Down
Expand Up @@ -8,7 +8,7 @@
/**
* Creates a JLPCActor.
*/
class _JLPCActorFactory extends tJLPCActorFactory {
class _JLPCActorFactory extends JLPCActorFactory {
/**
* The constructor used to create the actor.
*/
Expand Down

0 comments on commit ad9ccf4

Please sign in to comment.