[jsword-svn] jsword/java/jsword/org/crosswire/jsword/util s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Sun Nov 28 14:36:48 MST 2004
Update of /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/util
In directory www.crosswire.org:/tmp/cvs-serv11589/java/jsword/org/crosswire/jsword/util
Modified Files:
ConverterFactory.java
Log Message:
intellij refactor - safe
Index: ConverterFactory.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/util/ConverterFactory.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** ConverterFactory.java 7 Jul 2004 09:16:30 -0000 1.6
--- ConverterFactory.java 28 Nov 2004 21:36:46 -0000 1.7
***************
*** 43,47 ****
* Generate a converter for the current converter name
*/
! public static final Converter getConverter()
{
try
--- 43,47 ----
* Generate a converter for the current converter name
*/
! public static Converter getConverter()
{
try
***************
*** 62,66 ****
* Get a map of the known converters, by looking up the answers in Project
*/
! public static final Map getKnownConverters()
{
return ClassUtil.getImplementorsMap(Converter.class);
--- 62,66 ----
* Get a map of the known converters, by looking up the answers in Project
*/
! public static Map getKnownConverters()
{
return ClassUtil.getImplementorsMap(Converter.class);
***************
*** 70,74 ****
* For config to set the currently preferred converter implementation
*/
! public static final void setCurrentConverterName(String name)
{
ConverterFactory.name = name;
--- 70,74 ----
* For config to set the currently preferred converter implementation
*/
! public static void setCurrentConverterName(String name)
{
ConverterFactory.name = name;
***************
*** 78,82 ****
* For config to read the currently preferred converter implementation
*/
! public static final String getCurrentConverterName()
{
return name;
--- 78,82 ----
* For config to read the currently preferred converter implementation
*/
! public static String getCurrentConverterName()
{
return name;
More information about the jsword-svn
mailing list