You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2018/09/18 19:28:49 UTC

[GitHub] matthiasblaesing closed pull request #569: lib.nbjavac: Fix type change for Java 11

matthiasblaesing closed pull request #569: lib.nbjavac: Fix type change for Java 11
URL: https://github.com/apache/incubator-netbeans/pull/569
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/lib.nbjavac/src/org/netbeans/lib/nbjavac/services/NBMessager.java b/lib.nbjavac/src/org/netbeans/lib/nbjavac/services/NBMessager.java
index 10f53836af..3b5241f0af 100644
--- a/lib.nbjavac/src/org/netbeans/lib/nbjavac/services/NBMessager.java
+++ b/lib.nbjavac/src/org/netbeans/lib/nbjavac/services/NBMessager.java
@@ -18,9 +18,9 @@
  */
 package org.netbeans.lib.nbjavac.services;
 
+import com.sun.javadoc.SourcePosition;
 import com.sun.tools.javac.code.Symbol;
 import com.sun.tools.javac.util.Context;
-import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
 import com.sun.tools.javac.util.Log;
 import com.sun.tools.javadoc.main.Messager;
 import java.io.PrintWriter;
@@ -79,7 +79,7 @@ public Log make(Context c) {
 
     @Override
     public void error(
-            final DiagnosticPosition pos,
+            final SourcePosition pos,
             final String key,
             final Object ... args) {
         if (ERR_NOT_IN_PROFILE.equals(key)) {


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists