6aaa9b
--- librepository-1.1.3/common_build.xml	2020-05-05 20:00:37.191243154 +0100
6aaa9b
+++ librepository-1.1.3/common_build.xml	2020-05-05 20:00:44.344299905 +0100
6aaa9b
@@ -136,8 +136,8 @@
6aaa9b
   
6aaa9b
             value="true"
6aaa9b
             description="Indicates whether source should be compiled with deprecation information" />
6aaa9b
-  <property name="javac.source" value="1.5" description="Provide source compatibility with specified release" />
6aaa9b
-  <property name="javac.target" value="1.5" description="Generate class files for specific VM version" />
6aaa9b
+  <property name="javac.source" value="1.6" description="Provide source compatibility with specified release" />
6aaa9b
+  <property name="javac.target" value="1.6" description="Generate class files for specific VM version" />
6aaa9b
 
6aaa9b
   
6aaa9b
   
6aaa9b
@@ -1353,13 +1353,11 @@
6aaa9b
              nodeprecatedlist="false"
6aaa9b
              nodeprecated="false"
6aaa9b
              packagenames="${javadoc.packagenames}"
6aaa9b
+             excludepackagenames="org.pentaho.reporting.libraries.repository.email.*"
6aaa9b
              sourcepath="${src.dir}"
6aaa9b
              doctitle="${impl.title} documentation">
6aaa9b
       <link href="http://java.sun.com/j2se/${javac.source}.0/docs/api/" />
6aaa9b
       <classpath refid="classpath" />
6aaa9b
-      <packageset dir="source">
6aaa9b
-        <exclude name="org/pentaho/reporting/libraries/repository/email/**"/>
6aaa9b
-      </packageset>
6aaa9b
     </javadoc>
6aaa9b
   </target>
6aaa9b
 
6aaa9b
--- librepository-1.1.3/source/org/pentaho/reporting/libraries/repository/ContentItem.java	2020-06-10 14:13:04.904250346 +0100
6aaa9b
+++ librepository-1.1.3/source/org/pentaho/reporting/libraries/repository/ContentItem.java	2020-06-10 14:12:10.686769515 +0100
6aaa9b
@@ -43,7 +43,7 @@
6aaa9b
    * Tries to open and return a output stream for writing into the content item. This call will fail if the
6aaa9b
    * item is not writeable. Whether opening multiple output streams at the same time is possible is implementation
6aaa9b
    * dependent, but it is generally not recommended to try this.
6aaa9b
-   * 

6aaa9b
+   * 

6aaa9b
    * Having both an input and output stream open at the same time is not guaranteed to work. Generally if you need
6aaa9b
    * to append data, first open the inputstream and copy the content to a temporary location and then write the
6aaa9b
    * content along with the appended content to the new output stream. 
6aaa9b
@@ -58,7 +58,7 @@
6aaa9b
    * Tries to open and return a input stream for reading from the content item. This call will fail if the
6aaa9b
    * item is not readable. Whether opening multiple input streams at the same time is possible is implementation
6aaa9b
    * dependent.
6aaa9b
-   * 

6aaa9b
+   * 

6aaa9b
    * Having both an input and output stream open at the same time is not guaranteed to work. Generally if you need
6aaa9b
    * to append data, first open the inputstream and copy the content to a temporary location and then write the
6aaa9b
    * content along with the appended content to the new output stream.
6aaa9b
--- librepository-1.1.3/source/org/pentaho/reporting/libraries/repository/LibRepositoryBoot.java	2020-06-10 14:13:14.599336328 +0100
6aaa9b
+++ librepository-1.1.3/source/org/pentaho/reporting/libraries/repository/LibRepositoryBoot.java	2020-06-10 14:12:10.690769550 +0100
6aaa9b
@@ -27,7 +27,7 @@
6aaa9b
 /**
6aaa9b
  * The LibRepositoryBoot class is used to initialize the library before it is
6aaa9b
  * first used. This loads all configurations and initializes all factories.
6aaa9b
- * 

6aaa9b
+ * 

6aaa9b
  * Without booting, basic services like logging and the global configuration
6aaa9b
  * will not be availble.
6aaa9b
  *
6aaa9b
--- librepository-1.1.3/source/org/pentaho/reporting/libraries/repository/stream/StreamContentItem.java	2020-06-10 14:13:28.417458875 +0100
6aaa9b
+++ librepository-1.1.3/source/org/pentaho/reporting/libraries/repository/stream/StreamContentItem.java	2020-06-10 14:12:10.693769577 +0100
6aaa9b
@@ -114,7 +114,7 @@
6aaa9b
    * Tries to open and return a output stream for writing into the content item. This call will fail if the
6aaa9b
    * item is not writeable. Whether opening multiple output streams at the same time is possible is implementation
6aaa9b
    * dependent, but it is generally not recommended to try this.
6aaa9b
-   * 

6aaa9b
+   * 

6aaa9b
    * Having both an input and output stream open at the same time is not guaranteed to work. Generally if you need
6aaa9b
    * to append data, first open the inputstream and copy the content to a temporary location and then write the
6aaa9b
    * content along with the appended content to the new output stream.
6aaa9b
@@ -132,7 +132,7 @@
6aaa9b
    * Tries to open and return a input stream for reading from the content item. This call will fail if the
6aaa9b
    * item is not readable. Whether opening multiple input streams at the same time is possible is implementation
6aaa9b
    * dependent.
6aaa9b
-   * 

6aaa9b
+   * 

6aaa9b
    * Having both an input and output stream open at the same time is not guaranteed to work. Generally if you need
6aaa9b
    * to append data, first open the inputstream and copy the content to a temporary location and then write the
6aaa9b
    * content along with the appended content to the new output stream.