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

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


    from cf4164e  Merge pull request #260 from 
jlahoda/rewrite-cluster-properties
     add 1c07f3f  Do not include module cmdline args if project does not 
contain module-info.java
     add b19687c  Do not run build if CoS is enabled
     add c172eb2  Fixed coloring of PI end and PI content
     add 0fb75c1  #270595: Fixed livelock - endless loop looking for end of 
declaration
     add ecde560  isEnabled should be accessible from any thread
     add f83921e  Backport of #89519a9, translating to embedding offsets
     add d55ebe6  Fixed potential NPE; JShell may throw ISE when terminated in 
parallel to navigator init
     add b97b908  Precheck needs resolved phase
     add b90aaae  #257761: refactoring actions remapped to multikey shortcuts
     add 1a2fc57  #268895: do not offer hint if the method return not 
assignable to the computed type of the to-be-declaration
     add e64d46b  #270172: attempt to maintain caret position after autofolding
     add 46659af  #270533: plugins can identify appropriate Mode for newly 
opened TopComponents
     add 6ade83e  #270670: removed special case, field group are processed in 
doAccept.
     add c5e3cf4  #268895: fixed broken behaviour for generic return types
     add bff41e2  #270831: quoted possible spaces in agent specification / 
other arguments generated by JShell
     add 1f4f03a  #270953: introduce method must scan the whole method for 
local variable accesses, not just the lambda
     add 16137bf  #270831: keep document open while the shell is being 
initialized
     add 729fb36  #271065: inlined code uses correct instance even when the 
class is same. Improved symbol accessibility detection
     add fe7782b  [NETBEANS-44] Only ignore JShell TL classes. Members are 
defined by user and should be visible in completion
     add 6ab985f  [NETBEANS-43] paths must be terminated by platform-specific 
file separator
     add 6f3700e  #270816: panel must listen on name validator support for OK 
enablement
     add 3fe8289  #270797: fixed checking duplicate names. Improved checking 
for shadowed symbols
     add ec66fe7  Bugfix #269210: module directive optionally added when 
importing class. Merged in changes to ComputeImports from other commits.
     add f7c4fc5  Fixed completion with tag name and no attributes
     add d12773f  #271381: Fixed completion of referenced elements; by 
kostas_papadopoulos
     add bd42eda  #271408: workaround - getPath() does not find paths for 
locals, resource/exception vars
     add fb9183e  #271367: restricted acceptable types some more
     add 7560908  NETBEANS-90: implement hashCode/equals without DNS resolution
     add f1062cb  NETBEANS-93: fixed "concise" prompt template
     add da096cd  NETBEANS-91, NETBEANS-92: Lexer should consume newline after 
command parameters, but not add it to the COMMAND_PARAMETER token. Fixed list 
of recognized /commands
     add f510c3c  Align /history output with items offered in code completion
     add 79c53fd  Merge branch 'apache/master' into sdedic/after_donation2
     add e57396b  Relicensed to Apache before donation
     new 0140615  Merge pull request #259 from sdedic/sdedic/netbeans-bugfixes

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:
 core.windows/manifest.mf                           |   2 +-
 .../netbeans/core/windows/WindowManagerImpl.java   |   8 +
 .../modules/editor/fold/ui/FoldViewFactory.java    |   7 +-
 .../org/netbeans/api/editor/caret/EditorCaret.java |  89 +++++++++--
 .../netbeans/modules/java/completion/BaseTask.java |  32 +++-
 .../java/editor/imports/ComputeImports.java        |  63 ++++++--
 .../modules/java/hints/AssignResultToVariable.java |   9 ++
 .../modules/java/hints/errors/ImportClass.java     | 177 +++++++++++++++++++--
 .../modules/java/hints/errors/Utilities.java       |  16 ++
 .../java/hints/introduce/FieldValidator.java       | 148 ++++++++++++++---
 .../java/hints/introduce/IntroduceFieldFix.java    |   2 +-
 .../java/hints/introduce/IntroduceFieldPanel.java  |   8 +-
 .../java/hints/introduce/IntroduceMethodFix.java   |   2 +-
 .../java/hints/introduce/IntroduceMethodPanel.java |   4 +-
 .../java/hints/introduce/IntroduceVariableFix.java |   2 +-
 .../java/hints/introduce/MemberSearchResult.java   |  54 +++++++
 .../modules/java/hints/introduce/TreeUtils.java    |   9 +-
 .../java/hints/suggestions/TooStrongCast.java      |   6 +-
 .../java/j2semodule/resources/build-impl.xsl       |   2 +-
 .../modules/java/source/pretty/VeryPretty.java     |   8 +-
 .../javafx2/editor/fxml/FXMLEditAction.java        |   3 -
 .../javafx2/editor/fxml/FXMLOpenAction.java        |   3 -
 .../modules/jshell/editor/CompletionFilter.java    |   3 +-
 .../modules/jshell/env/JShellEnvironment.java      |  37 +++--
 .../modules/jshell/j2se/JShellStartupExtender.java |   4 +-
 .../modules/jshell/launch/ShellLaunchManager.java  |   2 +-
 .../modules/jshell/maven/MavenShellLauncher.java   |   9 +-
 .../modules/jshell/navigation/SnippetNodes.java    |  13 +-
 .../modules/jshell/parsing/JShellLexer.java        |  14 +-
 .../modules/jshell/parsing/SnippetRegistry.java    |   6 +-
 .../modules/jshell/project/REPLAction2.java        |   5 +
 .../modules/jshell/project/ShellProjectUtils.java  |  78 ++++++++-
 .../modules/jshell/support/ShellSession.java       |   9 +-
 .../modules/jshell/tool/JShellLauncher.java        |   7 +-
 .../netbeans/modules/jshell/tool/JShellTool.java   |  22 ++-
 .../netbeans/modules/jshell/tool/l10n.properties   |   6 +-
 .../org/openide/filesystems/MemoryFileSystem.java  |  24 +++
 openide.windows/apichanges.xml                     |  15 ++
 openide.windows/manifest.mf                        |   2 +-
 .../src/org/openide/windows/ModeSelector.java      |  49 ++++++
 .../java/plugins/InlineMethodTransformer.java      |  26 ++-
 .../refactoring/java/plugins/JavaPluginUtils.java  |   2 +-
 .../ReplaceConstructorWithBuilderPlugin.java       |   1 +
 .../ReplaceConstructorWithFactoryPlugin.java       |   1 +
 .../java/ui/ChangeParametersAction.java            |   2 +-
 .../java/ui/EncapsulateFieldAction.java            |   2 +-
 .../java/ui/ExtractInterfaceAction.java            |   2 +-
 .../java/ui/ExtractSuperclassAction.java           |   2 +-
 .../refactoring/java/ui/InnerToOuterAction.java    |   2 +-
 .../refactoring/java/ui/InvertBooleanAction.java   |   2 +-
 .../modules/refactoring/java/ui/PullUpAction.java  |   2 +-
 .../refactoring/java/ui/PushDownAction.java        |   2 +-
 .../ui/ReplaceConstructorWithBuilderAction.java    |   2 +-
 .../ui/ReplaceConstructorWithFactoryAction.java    |   2 +-
 .../refactoring/java/ui/UseSuperTypeAction.java    |   2 +-
 .../modules/refactoring/java/test/InlineTest.java  |  76 ++++++++-
 .../completion/util/CompletionContextImpl.java     |  30 +++-
 .../xml/schema/completion/util/CompletionUtil.java |  32 +++-
 .../modules/xml/text/api/dom/XMLSyntaxSupport.java |  12 +-
 .../xml/text/completion/XMLCompletionProvider.java |   4 +-
 .../modules/xml/text/resources/Bundle.properties   |   4 +-
 .../modules/xml/text/resources/XML-fontsColors.xml |   4 +-
 .../xml/text/resources/XMLEditor-fontsColors.xml   |  75 ---------
 63 files changed, 991 insertions(+), 257 deletions(-)
 create mode 100644 openide.windows/src/org/openide/windows/ModeSelector.java
 delete mode 100644 
xml.text/src/org/netbeans/modules/xml/text/resources/XMLEditor-fontsColors.xml

-- 
To stop receiving notification emails like this one, please contact
['"comm...@netbeans.apache.org" <comm...@netbeans.apache.org>'].

Reply via email to