You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2019/01/08 23:17:37 UTC

svn commit: r1850810 - /webservices/axiom/trunk/testing/xml-truth/src/main/java/org/apache/axiom/truth/xml/XMLTruth.java

Author: veithen
Date: Tue Jan  8 23:17:37 2019
New Revision: 1850810

URL: http://svn.apache.org/viewvc?rev=1850810&view=rev
Log:
Fix Javadoc error related to the changes introduced by AXIOM-494.

Modified:
    webservices/axiom/trunk/testing/xml-truth/src/main/java/org/apache/axiom/truth/xml/XMLTruth.java

Modified: webservices/axiom/trunk/testing/xml-truth/src/main/java/org/apache/axiom/truth/xml/XMLTruth.java
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/testing/xml-truth/src/main/java/org/apache/axiom/truth/xml/XMLTruth.java?rev=1850810&r1=1850809&r2=1850810&view=diff
==============================================================================
--- webservices/axiom/trunk/testing/xml-truth/src/main/java/org/apache/axiom/truth/xml/XMLTruth.java (original)
+++ webservices/axiom/trunk/testing/xml-truth/src/main/java/org/apache/axiom/truth/xml/XMLTruth.java Tue Jan  8 23:17:37 2019
@@ -41,6 +41,7 @@ import org.w3c.dom.Element;
 import org.xml.sax.InputSource;
 
 import com.google.common.truth.FailureMetadata;
+import com.google.common.truth.SimpleSubjectBuilder;
 import com.google.common.truth.Subject;
 import com.google.common.truth.Truth;
 
@@ -256,7 +257,7 @@ public final class XMLTruth {
      *            the API to use (e.g. {@link Document}
      * @param object
      *            an object implementing that API
-     * @return an object that can be passed to {@link DelegatedVerb#that(Object)} or
+     * @return an object that can be passed to {@link SimpleSubjectBuilder#that(Object)} or
      *         {@link XMLSubject#hasSameContentAs(Object)}
      */
     public static <T> Object xml(Class<T> type, T object) {