You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2010/12/20 05:53:02 UTC

svn commit: r1050987 - /camel/trunk/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/FallbackTypeConverter.java

Author: ningjiang
Date: Mon Dec 20 04:53:01 2010
New Revision: 1050987

URL: http://svn.apache.org/viewvc?rev=1050987&view=rev
Log:
Fixed a typo of FallbackTypeConverter

Modified:
    camel/trunk/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/FallbackTypeConverter.java

Modified: camel/trunk/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/FallbackTypeConverter.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/FallbackTypeConverter.java?rev=1050987&r1=1050986&r2=1050987&view=diff
==============================================================================
--- camel/trunk/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/FallbackTypeConverter.java (original)
+++ camel/trunk/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/FallbackTypeConverter.java Mon Dec 20 04:53:01 2010
@@ -121,7 +121,7 @@ public class FallbackTypeConverter imple
         }
 
         JAXBContext context = createContext(type);
-        // must create a new instance of unmarshaller as its not thred safe
+        // must create a new instance of unmarshaller as its not thread safe
         Unmarshaller unmarshaller = context.createUnmarshaller();
 
         if (parentTypeConverter != null) {