Removed unused code - will add a proper implementation is required.
This commit is contained in:
parent
87fb75661f
commit
acb49a1e58
|
|
@ -54,12 +54,6 @@ public final class CatchBlockOption implements Serializable
|
|||
STR_TO_OPT.put(mStrRep, this);
|
||||
}
|
||||
|
||||
/** @see Object **/
|
||||
public String toString()
|
||||
{
|
||||
return mStrRep;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the CatchBlockOption specified by a string representation. If no
|
||||
* option exists then null is returned.
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ import java.util.HashMap;
|
|||
* Represents the options for placing the left curly brace '{'.
|
||||
*
|
||||
* @author <a href="mailto:oliver@puppycrawl.com">Oliver Burn</a>
|
||||
* @version $Id: LeftCurlyOption.java,v 1.4 2002-03-05 20:53:04 lkuehne Exp $
|
||||
* @version $Id: LeftCurlyOption.java,v 1.5 2002-05-31 13:55:52 oburn Exp $
|
||||
*/
|
||||
public final class LeftCurlyOption implements Serializable
|
||||
{
|
||||
|
|
@ -59,12 +59,6 @@ public final class LeftCurlyOption implements Serializable
|
|||
STR_TO_OPT.put(mStrRep, this);
|
||||
}
|
||||
|
||||
/** @see Object **/
|
||||
public String toString()
|
||||
{
|
||||
return mStrRep;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the LeftCurlyOption specified by a string representation. If no
|
||||
* option exists then null is returned.
|
||||
|
|
|
|||
|
|
@ -53,12 +53,6 @@ public final class PadOption
|
|||
STR_TO_OPT.put(mStrRep, this);
|
||||
}
|
||||
|
||||
/** @see Object **/
|
||||
public String toString()
|
||||
{
|
||||
return mStrRep;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the option specified by a string representation. If no
|
||||
* option exists then null is returned.
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ import java.util.HashMap;
|
|||
* Represents the options for placing the right curly brace '}'.
|
||||
*
|
||||
* @author <a href="mailto:oliver@puppycrawl.com">Oliver Burn</a>
|
||||
* @version $Id: RightCurlyOption.java,v 1.2 2002-03-05 20:53:04 lkuehne Exp $
|
||||
* @version $Id: RightCurlyOption.java,v 1.3 2002-05-31 13:55:52 oburn Exp $
|
||||
*/
|
||||
public final class RightCurlyOption implements Serializable
|
||||
{
|
||||
|
|
@ -55,12 +55,6 @@ public final class RightCurlyOption implements Serializable
|
|||
STR_TO_OPT.put(mStrRep, this);
|
||||
}
|
||||
|
||||
/** @see Object **/
|
||||
public String toString()
|
||||
{
|
||||
return mStrRep;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the RightCurlyOption specified by a string representation. If no
|
||||
* option exists then null is returned.
|
||||
|
|
|
|||
Loading…
Reference in New Issue