Author: davsclaus
Date: Wed May  7 11:29:26 2008
New Revision: 654202

URL: http://svn.apache.org/viewvc?rev=654202&view=rev
Log:
CAMEL-463: Fixed UTF-8 encoding warning from the Scala compiler

Modified:
    
activemq/camel/trunk/components/camel-scala/src/test/resources/org/apache/camel/scala/dsl/enricher.vm
   (contents, props changed)
    
activemq/camel/trunk/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/ContentEnricherTest.scala

Modified: 
activemq/camel/trunk/components/camel-scala/src/test/resources/org/apache/camel/scala/dsl/enricher.vm
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-scala/src/test/resources/org/apache/camel/scala/dsl/enricher.vm?rev=654202&r1=654201&r2=654202&view=diff
==============================================================================
--- 
activemq/camel/trunk/components/camel-scala/src/test/resources/org/apache/camel/scala/dsl/enricher.vm
 (original)
+++ 
activemq/camel/trunk/components/camel-scala/src/test/resources/org/apache/camel/scala/dsl/enricher.vm
 Wed May  7 11:29:26 2008
@@ -1,17 +1,17 @@
-## ------------------------------------------------------------------------
-## Licensed to the Apache Software Foundation (ASF) under one or more
-## contributor license agreements.  See the NOTICE file distributed with
-## this work for additional information regarding copyright ownership.
-## The ASF licenses this file to You under the Apache License, Version 2.0
-## (the "License"); you may not use this file except in compliance with
-## the License.  You may obtain a copy of the License at
-##
-## http://www.apache.org/licenses/LICENSE-2.0
-##
-## Unless required by applicable law or agreed to in writing, software
-## distributed under the License is distributed on an "AS IS" BASIS,
-## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-## See the License for the specific language governing permissions and
-## limitations under the License.
-## ------------------------------------------------------------------------
-<hello>${in.body}</hello>
+## ------------------------------------------------------------------------
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements.  See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You under the Apache License, Version 2.0
+## (the "License"); you may not use this file except in compliance with
+## the License.  You may obtain a copy of the License at
+##
+## http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions and
+## limitations under the License.
+## ------------------------------------------------------------------------
+<hello>${in.body}</hello>
\ No newline at end of file

Propchange: 
activemq/camel/trunk/components/camel-scala/src/test/resources/org/apache/camel/scala/dsl/enricher.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: 
activemq/camel/trunk/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/ContentEnricherTest.scala
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/ContentEnricherTest.scala?rev=654202&r1=654201&r2=654202&view=diff
==============================================================================
--- 
activemq/camel/trunk/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/ContentEnricherTest.scala
 (original)
+++ 
activemq/camel/trunk/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/ContentEnricherTest.scala
 Wed May  7 11:29:26 2008
@@ -30,7 +30,7 @@
   
   def testContentEnricherByProcessorDef = {
     "mock:b" expect { _.received ("hello from the UK", 
-                                  "hallo vanuit Belgiƫ",
+                                  "hallo vanuit Belgie",
                                   "bonjour de la douce France")}
     "direct:b" ! ("hello", "hallo", "bonjour")
     "mock:b" assert()
@@ -55,7 +55,7 @@
     def myProcessor(exchange: Exchange) = {
       exchange.in match {
         case "hello" => exchange.in = "hello from the UK"
-        case "hallo" => exchange.in = "hallo vanuit Belgiƫ"
+        case "hallo" => exchange.in = "hallo vanuit Belgie"
         case "bonjour" => exchange.in = "bonjour de la douce France"
       }
     }


Reply via email to