You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2020/10/13 18:01:30 UTC

[uima-uimaj] branch UIMA-6272-UIMA-does-not-build-on-Java-14 created (now cb9894a)

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

rec pushed a change to branch UIMA-6272-UIMA-does-not-build-on-Java-14
in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git.


      at cb9894a  [UIMA-6272] UIMA doesn't build on Java 14

This branch includes the following new commits:

     new cb9894a  [UIMA-6272] UIMA doesn't build on Java 14

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[uima-uimaj] 01/01: [UIMA-6272] UIMA doesn't build on Java 14

Posted by re...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch UIMA-6272-UIMA-does-not-build-on-Java-14
in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git

commit cb9894a054d3c3a4b5d7ca1be078f695bc200092
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Tue Oct 13 18:56:40 2020 +0200

    [UIMA-6272] UIMA doesn't build on Java 14
    
    - Make EncodedPrintStream.writeBytes(byte[]) public like the super method
    
    (cherry picked from commit 995b0521b78284771d051e5c8574cf7d46b397fe)
---
 .../src/main/java/org/apache/uima/internal/util/EncodedPrintStream.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/uimaj-core/src/main/java/org/apache/uima/internal/util/EncodedPrintStream.java b/uimaj-core/src/main/java/org/apache/uima/internal/util/EncodedPrintStream.java
index 11cbff1..81368de 100644
--- a/uimaj-core/src/main/java/org/apache/uima/internal/util/EncodedPrintStream.java
+++ b/uimaj-core/src/main/java/org/apache/uima/internal/util/EncodedPrintStream.java
@@ -72,7 +72,7 @@ public class EncodedPrintStream extends PrintStream {
     "test".getBytes(encoding);
   }
 
-  private final void writeBytes(byte[] bytes) {
+  public final void writeBytes(byte[] bytes) {
     super.write(bytes, 0, bytes.length);
   }