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

geertjan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git.


    from 6ee4827  Merge pull request #273 from thurka/thurka/after_donation
     add 57ca9b6  Issues #269689 and #269836 fixed.
     add 79e4c46  Enhanced error recovery.
     add 6496284  Enhanced error recovery - cont.
     add e22e2e0  Issue #269326 - ClassCastException: Cannot cast 
org.netbeans.modules.java.source.save.Reindenter$$Lambda$227/34841035 to 
javax.tools.DiagnosticListener - fixed.
     add a72a442  Issue #270342 - false error badges in correct Clank sources - 
fixed.
     add 099516f  Issues #239183 and #257282 fixed.
     add 432b491  Use desktop rendering hints (e.g. antialiasing) for rendering 
code completion tooltips.
     add 6470a43  Do not open parameters tooltip when completing methods 
without params.
     add 7fe0faa  Issues #258803 and #269287 fixed.
     add 57d4fc7  Issue #268247 - Wrong new line if comma in annotations - 
fixed.
     add 5c20e0d  Issue #268396 - No code completion comes up after hitting dot 
while using multicursor - fixed.
     add 78ffa1b  Issue #268395 - MultiCursor make problems for code completion 
after hitting tab or enter - fixed.
     add 7cca20f  Issue #258851 - NullPointerException at 
com.sun.tools.javac.jvm.Gen.getAndRemoveNonFieldTAs - fixed.
     add 06b7360  Modified to prevent NPEs from Elements.getTypeElement.
     add 13af845  Issue #231879 - Unable to disable all automatic indentation 
and random carriage returns across the editor - fixed.
     add 99788a8  Issue #268069 - [82cat] Auto complete suggestions don't show 
first time - fixed.
     add 3378020  Issue #268942 - Analyze Stack Window can not open location - 
fixed.
     add 1690724  Issue #268940 - No "import" hint for classes with "$" - fixed.
     add b4ba9ce  Issue #270647 - missing error tooltip on module-info.java 
when jdk9 but source level 1.8 - fixed.
     add af1645e  Merging recent changes in JDK9 javac.
     add beb78df  Increasing spec versions.
     add 2312de0  Issues #270696, #268429, #200970, and #257649 fixed.
     add 5e3a600  Labels should be displayed for unresolvable links.
     add 60a390a  Issue #270360 - Move class to type refactoring leaves old 
package declaration - fixed.
     add fef0118  Issue #257772 - AssertionError at 
com.sun.tools.javac.util.Assert.error - fixed.
     add 1f3ee77  Issues #269459 and #270849 fixed.
     add 490e600  Issue #270745 - NullPointerException at 
org.netbeans.api.editor.caret.EditorCaret.maybeSaveCaretOffset - fixed.
     add 269403c  Issue #268113 - IndexOutOfBoundsException - fixed.
     add cdc5ac5  Merging jlahoda's fix of #8182450: javac aborts when 
generating ct.sym intermittently - Initialize the module system model even in 
presence of missing/broken module-infos; BadClassFiles should not immediatelly 
abort compilation anymore, but should be handled as if the classfile did not 
exist.
     add b084f91  Issue #271206 - NullPointerException at 
org.netbeans.modules.java.completion.JavaCompletionTask.addLocalMembersAndVars 
- fixed.
     add 59e5e1a  Issue #271045 - IllegalArgumentException: 
(org.clank.support.aliases.type$iterator,org.clank.support.aliases.type$iterator,org.clank.java.std.Compare)void
 - fixed.
     add 8398581  Issues #271053 and 271211 fixed.
     add 13be3be  Issue #271002 - NullPointerException at 
org.netbeans.modules.java.source.pretty.WidthEstimator.widthQ - fixed.
     add e19e951  Issue #270686 - ClassCastException: 
org.netbeans.modules.debugger.jpda.ui.WatchPanel$MyTrees cannot be cast to 
com.sun.source.util.DocTrees - fixed.
     add e49948f  Issue #271275 - NullPointerException at 
com.sun.source.util.TreePath.<init> - fixed.
     add dfa9aea  Issues #271017 and #271293 fixed.
     add fbced71  Increasing spec version.
     add 024be52  Issue #271343 - Incorrect brace position for module-info.java 
- fixed.
     add 53ee089  Issue #270304 - Performing Format action (Alt+Shift+F) on 
module-info.java adds empty line - fixed.
     add d193b1b  Issue #270934 - formatting if clause with single code line 
and commentary breaks code - fixed.
     add 6fe813e  Issue #271484 - JavacParser does not handle 
--add-modules=<module_name> compiler option - fixed.
     add e9c0687  Issue #270254 - ClassCastException: 
com.sun.tools.javac.parser.JavacParser$SimpleEndPosTable cannot be cast to 
org.netbeans.lib.nbjavac.services.NBParserFactory$NBJavacParser$EndPosTableImpl 
- fixed.
     add e0ca212  Issues #256966, #270308, and #271310 fixed.
     add 0173d76  Merge branch 'apache/master' into dbalek/after_donation
     add 389bf2b  Changing licence.
     new 5d0b08c  Merge pull request #274 from dbalek/dbalek/after_donation

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.


Summary of changes:
 debugger.jpda/nbproject/project.properties         |   2 +-
 editor.completion/nbproject/project.properties     |   2 +-
 .../modules/editor/completion/CompletionImpl.java  |   8 +-
 .../editor/completion/CompletionLayout.java        |   2 +
 .../editor/completion/MulticaretHandler.java       | 126 +++++++++++++++++++++
 editor.indent/nbproject/project.xml                |   2 +-
 .../netbeans/modules/editor/indent/IndentImpl.java |  43 ++++---
 .../org/netbeans/api/editor/caret/EditorCaret.java |   8 +-
 editor.settings/manifest.mf                        |   2 +-
 .../api/editor/settings/SimpleValueNames.java      |   7 ++
 .../wizard/fromdb/JavaPersistenceGenerator.java    |  17 ++-
 .../java/completion/JavaCompletionTask.java        |   6 +-
 .../modules/editor/java/JavaCompletionItem.java    |   2 +-
 .../editor/java/MethodParamsTipPaintComponent.java |  17 ++-
 .../modules/java/hints/AssignResultToVariable.java |   2 +-
 .../modules/java/hints/errors/ImportClass.java     |   2 +-
 .../java/stackanalyzer/StackLineAnalyser.java      |  28 +++--
 .../netbeans/api/java/source/CompilationInfo.java  |   3 +-
 .../modules/java/source/PostFlowAnalysis.java      |  30 ++---
 .../java/source/indexing/JavaCustomIndexer.java    |  50 ++++----
 .../modules/java/source/parsing/JavacParser.java   |  25 ++--
 .../modules/java/source/pretty/WidthEstimator.java |   3 +
 .../modules/java/source/save/Reformatter.java      |  78 +++++++++++--
 .../modules/java/source/save/Reindenter.java       |  17 +--
 .../modules/java/source/save/FormatingTest.java    |  28 ++++-
 .../org/netbeans/modules/java/ui/Bundle.properties |   1 +
 .../org/netbeans/modules/java/ui/FmtBraces.form    | 100 ++++++++++------
 .../org/netbeans/modules/java/ui/FmtBraces.java    |  71 ++++++------
 .../api/java/source/ui/ElementJavadoc.java         |   2 +-
 .../lib/nbjavac/services/NBParserFactory.java      |   4 +-
 libs.javacapi/external/binaries-list               |   2 +-
 libs.javacapi/nbproject/project.properties         |   2 +-
 libs.javacimpl/external/binaries-list              |   2 +-
 libs.javacimpl/nbproject/project.properties        |   2 +-
 libs.javacimpl/nbproject/project.xml               |   2 +-
 options.editor/manifest.mf                         |   2 +-
 options.editor/nbproject/project.xml               |  18 +--
 .../modules/options/indentation/Bundle.properties  |   3 +
 .../options/indentation/IndentationPanel.form      |  67 +++++++----
 .../options/indentation/IndentationPanel.java      |  71 ++++++++----
 .../java/plugins/MoveClassTransformer.java         |   3 +-
 41 files changed, 608 insertions(+), 254 deletions(-)
 create mode 100644 
editor.completion/src/org/netbeans/modules/editor/completion/MulticaretHandler.java

-- 
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].

Reply via email to