Have currencyPennies call the other.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1235 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
ray
2003-10-02 02:22:21 +00:00
parent b2b4e0ec7d
commit f95a813b62
@@ -1,5 +1,5 @@
//
// $Id: StringTool.java,v 1.7 2003/10/01 22:58:31 eric Exp $
// $Id: StringTool.java,v 1.8 2003/10/02 02:22:21 ray Exp $
//
// samskivert library - useful routines for java programs
// Copyright (C) 2001 Michael Bayne
@@ -68,7 +68,7 @@ public class StringTool
*/
public String currencyPennies (double value)
{
return _curFormatter.format(value/100.0);
return currency(value / 100.0);
}
/**