You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2021/02/23 11:06:41 UTC

[cxf] branch master updated: FIx typos "doesnt" -> "doesn't". (#740)

This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new 320534f  FIx typos "doesnt" -> "doesn't". (#740)
320534f is described below

commit 320534fa741aa00834c1d35a46efd3eedeb7229a
Author: Gary Gregory <ga...@users.noreply.github.com>
AuthorDate: Tue Feb 23 06:06:27 2021 -0500

    FIx typos "doesnt" -> "doesn't". (#740)
---
 .../test/java/org/apache/cxf/systest/servlet/AbstractServletTest.java | 4 ++--
 .../org/apache/cxf/tools/corba/processors/wsdl/WSDLToCorbaHelper.java | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/systests/transports/src/test/java/org/apache/cxf/systest/servlet/AbstractServletTest.java b/systests/transports/src/test/java/org/apache/cxf/systest/servlet/AbstractServletTest.java
index c0a0a9c..bcf882d 100644
--- a/systests/transports/src/test/java/org/apache/cxf/systest/servlet/AbstractServletTest.java
+++ b/systests/transports/src/test/java/org/apache/cxf/systest/servlet/AbstractServletTest.java
@@ -77,7 +77,7 @@ public abstract class AbstractServletTest extends AbstractCXFTest {
 
     /**
      * Here we expect an errorCode other than 200, and look for it checking for
-     * text is omitted as it doesnt work. It would never work on java1.3, but
+     * text is omitted as it doesn't work. It would never work on java1.3, but
      * one may have expected java1.4+ to have access to the error stream in
      * responses. Clearly not.
      *
@@ -98,7 +98,7 @@ public abstract class AbstractServletTest extends AbstractCXFTest {
         } catch (HttpException e) {
             assertEquals(failureText, errorCode, e.getResponseCode());
             /*
-             * checking for text omitted as it doesnt work. if(errorText!=null) {
+             * checking for text omitted as it doesn't work. if(errorText!=null) {
              * assertTrue( "Failed to find "+errorText+" in "+
              * e.getResponseMessage(), e.getMessage().indexOf(errorText)>=0); }
              */
diff --git a/tools/corba/src/main/java/org/apache/cxf/tools/corba/processors/wsdl/WSDLToCorbaHelper.java b/tools/corba/src/main/java/org/apache/cxf/tools/corba/processors/wsdl/WSDLToCorbaHelper.java
index 849cf27..141748f 100644
--- a/tools/corba/src/main/java/org/apache/cxf/tools/corba/processors/wsdl/WSDLToCorbaHelper.java
+++ b/tools/corba/src/main/java/org/apache/cxf/tools/corba/processors/wsdl/WSDLToCorbaHelper.java
@@ -1431,7 +1431,7 @@ public class WSDLToCorbaHelper {
                 } else if (fields.size() == 1) {
                     caselist.add("TRUE");
                 } else {
-                    String msg = "Discriminator Type doesnt match number of Choices in Union:" + name;
+                    String msg = "Discriminator Type doesn't match number of Choices in Union:" + name;
                     LOG.log(Level.WARNING, msg);
                 }
             }