You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2011/12/30 19:45:03 UTC

svn commit: r1225890 - in /axis/axis1/java/trunk: axis/src/main/java/org/apache/axis/attachments/DimeAttachmentStreams.java axis/src/main/java/org/apache/axis/attachments/MultipartAttachmentStreams.java pom.xml

Author: veithen
Date: Fri Dec 30 18:45:03 2011
New Revision: 1225890

URL: http://svn.apache.org/viewvc?rev=1225890&view=rev
Log:
Fixed a couple of Javadoc warnings and failures.

Modified:
    axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/attachments/DimeAttachmentStreams.java
    axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/attachments/MultipartAttachmentStreams.java
    axis/axis1/java/trunk/pom.xml

Modified: axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/attachments/DimeAttachmentStreams.java
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/attachments/DimeAttachmentStreams.java?rev=1225890&r1=1225889&r2=1225890&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/attachments/DimeAttachmentStreams.java (original)
+++ axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/attachments/DimeAttachmentStreams.java Fri Dec 30 18:45:03 2011
@@ -11,7 +11,7 @@ import org.apache.axis.utils.Messages;
  * 
  * This is the concrete implementation of the IncomingAttachmentStreams class
  * and is used to parse data that is in the DIME format. This class will make
- * use of Axis’ DimeDelimitedInputStream to parse the data in the HTTP stream
+ * use of Axis' DimeDelimitedInputStream to parse the data in the HTTP stream
  * which will give this class the capability of creating
  * IncomingAttachmentInputStream objects at each marker within the HTTP stream.
  * 

Modified: axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/attachments/MultipartAttachmentStreams.java
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/attachments/MultipartAttachmentStreams.java?rev=1225890&r1=1225889&r2=1225890&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/attachments/MultipartAttachmentStreams.java (original)
+++ axis/axis1/java/trunk/axis/src/main/java/org/apache/axis/attachments/MultipartAttachmentStreams.java Fri Dec 30 18:45:03 2011
@@ -24,7 +24,7 @@ import org.apache.axis.utils.Messages;
  * SwA format. Another difference between the two is that the
  * MultipartAttachmentStreams class must also provide a way to hold attachment
  * parts parsed prior to where the SOAP part appears in the HTTP stream (i.e.
- * the root part of the multipart-related message). Our DIME counterpart didn’t
+ * the root part of the multipart-related message). Our DIME counterpart didn't
  * have to worry about this since the SOAP part is guaranteed to be the first in
  * the stream. But since SwA has no such guarantee, we must fall back to caching
  * these first parts. Afterwards, we can stream the rest of the attachments that

Modified: axis/axis1/java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1225890&r1=1225889&r2=1225890&view=diff
==============================================================================
--- axis/axis1/java/trunk/pom.xml (original)
+++ axis/axis1/java/trunk/pom.xml Fri Dec 30 18:45:03 2011
@@ -49,6 +49,12 @@
                         </archive>
                     </configuration>
                 </plugin>
+                <plugin>
+                    <artifactId>maven-javadoc-plugin</artifactId>
+                    <configuration>
+                        <source>1.4</source>
+                    </configuration>
+                </plugin>
             </plugins>
         </pluginManagement>
     </build>