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

8bd36c
+   * 

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

8bd36c
+   * 

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

8bd36c
+ * 

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

8bd36c
+   * 

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

8bd36c
+   * 

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