This is an automated email from the ASF dual-hosted git repository. neilcsmith pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/netbeans.git
from c3bd066dab Merge pull request #6645 from jhorvath/db_vault_empty_password new 36a9b160de [NETBEANS-6599] Do not throw a CompletionFailure for empty java.lang package outside of java.base. new 8dd9867e1a Merge pull request #6629 from lahodaj/NETBEANS-6599 new 6468b24767 [JAVAVSCODE-53] Assignments to parameters to record compact constructors should not be marked as unused. new 68bb0e8e61 Merge pull request #6635 from lahodaj/javavscode-53 new 0136307ef3 [NETBEANS-6638]: Avoid adding a space after opening curly brace. new 7668ad1083 Merge pull request #6641 from lahodaj/NETBEANS-6638 new 7b478ba8ba PHP: Fix autocomplete for exception class when adding exception breakpoint. new 5bfd1a1eee Merge pull request #6643 from troizet/php_fix_completion_exception_breakpoint new 9e4a2603dd [NETBEANS-5659] Collection.forEach is always a read from the collection. new 43693c87d7 Merge pull request #6646 from lahodaj/NETBEANS-5659 new 0e0560d950 Drop horizontal scroll mouse button events on Linux to fix trackpad issues. new efe5e1735d Merge pull request #6644 from neilcsmith-net/mouse-linux-horiz-scroll new 77185eab0f Enable JUnit output processing if the Maven goals include failsafe:integration-test new 7c99436d83 Merge pull request #6654 from neilcsmith-net/gh6448 new 94aa2ddd90 Revert "Priming build and reload improvements." new a385cb1a63 Merge pull request #6623 from mbien/revert-6514_delivery new 317bc96f9e Merge branch 'delivery' into del-master-20rc3 new 27e53d96cd Merge pull request #6656 from neilcsmith-net/del-master-20rc3 The 9268 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: .../editor/resources/NetBeans-keybindings.xml | 2 - .../modules/editor/java/TypingCompletion.java | 10 +- .../editor/java/TypingCompletionUnitTest.java | 6 + .../modules/java/hints/bugs/Unbalanced.java | 9 +- .../java/hints/bugs/UnusedAssignmentOrBranch.java | 28 +- .../modules/java/hints/bugs/UnbalancedTest.java | 49 ++ .../hints/bugs/UnusedAssignmentOrBranchTest.java | 27 + .../modules/nbcode/integration/maven.properties | 1 - .../lib/nbjavac/services/NBClassFinder.java | 5 + .../lib/nbjavac/services/NBClassFinderTest.java | 9 + .../maven/junit/JUnitOutputProcessorFactory.java | 3 +- java/maven/apichanges.xml | 14 - java/maven/build.xml | 3 +- java/maven/nbproject/project.properties | 2 +- .../netbeans/modules/maven/NbArtifactFixer.java | 49 -- .../netbeans/modules/maven/NbMavenProjectImpl.java | 182 +------ .../netbeans/modules/maven/api/NbMavenProject.java | 54 +- .../classpath/AbstractProjectClassPathImpl.java | 9 - .../maven/classpath/ClassPathProviderImpl.java | 2 - .../maven/classpath/CompileClassPathImpl.java | 7 +- .../modules/maven/customizer/BasicInfoPanel.java | 4 - .../maven/execute/MavenCommandLineExecutor.java | 15 +- .../modules/maven/execute/ReactorChecker.java | 12 +- .../maven/modelcache/MavenProjectCache.java | 223 +++----- .../modules/maven/nodes/AddDependencyPanel.java | 3 - .../maven/problems/MavenModelProblemsProvider.java | 11 +- .../maven/problems/ProblemReporterImpl.java | 2 +- .../modules/maven/problems/SanityBuildAction.java | 17 +- .../maven/spi/newproject/CreateProjectBuilder.java | 2 +- .../data/projects/multiproject/democa/.gitignore | 15 - .../unit/data/projects/multiproject/democa/LICENSE | 201 ------- .../data/projects/multiproject/democa/lib/pom.xml | 198 ------- .../data/projects/multiproject/democa/oci/pom.xml | 253 --------- .../unit/data/projects/multiproject/democa/pom.xml | 50 -- .../modules/maven/NbMavenProjectImpl2Test.java | 597 --------------------- .../modules/maven/NbMavenProjectImplTest.java | 3 - .../modules/maven/execute/MavenExecMonitor.java | 50 -- .../modules/maven/execute/MockMavenExec.java | 23 +- .../modules/maven/problems/PrimingActionTest.java | 14 +- .../spi/actions/ProvidedConfigurationsTest.java | 7 +- .../ui/completion/ExceptionCompletionItem.java | 9 +- .../windows/ShortcutAndMenuKeyEventProcessor.java | 11 +- .../src/org/openide/util/Utilities.java | 8 +- 43 files changed, 302 insertions(+), 1897 deletions(-) delete mode 100644 java/maven/test/unit/data/projects/multiproject/democa/.gitignore delete mode 100644 java/maven/test/unit/data/projects/multiproject/democa/LICENSE delete mode 100644 java/maven/test/unit/data/projects/multiproject/democa/lib/pom.xml delete mode 100644 java/maven/test/unit/data/projects/multiproject/democa/oci/pom.xml delete mode 100644 java/maven/test/unit/data/projects/multiproject/democa/pom.xml delete mode 100644 java/maven/test/unit/src/org/netbeans/modules/maven/NbMavenProjectImpl2Test.java delete mode 100644 java/maven/test/unit/src/org/netbeans/modules/maven/execute/MavenExecMonitor.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org For additional commands, e-mail: commits-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists