Trying to add BountyHunter and I keep getting cannot find symbol OptimizeText and I have already imported my Misc.

Here is the code:
Code:
	p.getActionSender().setString(p, Misc.optimizeText(p2.username), 653, 8);
	p2.getActionSender().setString(p2, Misc.optimizeText(p.username), 653, 8);
Here is the error:
Code:
.\net\com\codeusa\model\BountyHunter.java:103: cannot find symbol
symbol  : method optimizeText(java.lang.String)
location: class net.com.codeusa.util.Misc
                        p.getActionSender().setString(p, Misc.optimizeText(p2.us
ername), 653, 8);
                                                             ^
.\net\com\codeusa\model\BountyHunter.java:104: cannot find symbol
symbol  : method optimizeText(java.lang.String)
location: class net.com.codeusa.util.Misc
                        p2.getActionSender().setString(p2, Misc.optimizeText(p.u
sername), 653, 8);
                                                               ^
Note: Recompile with -Xlint:unchecked for details.
2 errors
Press any key to continue . . .
Anyone help?