diff --git a/proposal/myrmidon/src/java/org/apache/antlib/core/Resources.properties b/proposal/myrmidon/src/java/org/apache/antlib/core/Resources.properties index bbf5ed201..4173a8808 100644 --- a/proposal/myrmidon/src/java/org/apache/antlib/core/Resources.properties +++ b/proposal/myrmidon/src/java/org/apache/antlib/core/Resources.properties @@ -13,11 +13,6 @@ convert.bad-byte.error=Error converting object ({0}) to Byte. convert.bad-class.error=Error converting object ({0}) to Class. convert.bad-double.error=Error converting object ({0}) to Double. convert.bad-file.error=Error converting object ({0}) to File. -convert.bad-float.error=Error converting object ({0}) to Float. -convert.bad-integer.error=Error converting object ({0}) to Integer. -convert.bad-long.error=Error converting object ({0}) to Long. -convert.bad-short.error=Error converting object ({0}) to Short. -convert.bad-url.error=Error converting object ({0}) to URL. getByName.error=Failed to retrieve enum by calling getByName on "{0}". (Reason: {1}). enum.missing.getByName.error=Enum class "{0}" is missing a public static method named "getByName" that accepts a single string parameter. diff --git a/proposal/myrmidon/src/java/org/apache/aut/converter/lib/Resources.properties b/proposal/myrmidon/src/java/org/apache/aut/converter/lib/Resources.properties new file mode 100644 index 000000000..d6e8a83ac --- /dev/null +++ b/proposal/myrmidon/src/java/org/apache/aut/converter/lib/Resources.properties @@ -0,0 +1,9 @@ +convert.bad-boolean.error=Error converting object ({0}) to Boolean. +convert.bad-byte.error=Error converting object ({0}) to Byte. +convert.bad-class.error=Error converting object ({0}) to Class. +convert.bad-double.error=Error converting object ({0}) to Double. +convert.bad-float.error=Error converting object ({0}) to Float. +convert.bad-integer.error=Error converting object ({0}) to Integer. +convert.bad-long.error=Error converting object ({0}) to Long. +convert.bad-short.error=Error converting object ({0}) to Short. +convert.bad-url.error=Error converting object ({0}) to URL.