You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by lk...@apache.org on 2019/03/09 04:06:09 UTC

[incubator-netbeans] branch release110 updated (ba174cf -> e0621c5)

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

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


    from ba174cf  Update enterprise.properties
     new 8de1e15  Merge pull request #1048 from iajn/NETBEANS-1774
     new 2ba5c57  [NETBEANS-1780]:Fixed formatting issue in Switch Expression(JDK-12) (#1079)
     new e0621c5  [NETBEANS-1675]Java Hint to fix error :different case kinds used in s… (#1126)

The 2379 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:
 .../modules/java/hints/errors/Bundle.properties    |   2 +
 .../java/hints/errors/DifferentCaseKindsFix.java   | 143 ++++++++
 .../modules/java/hints/errors/Utilities.java       | 195 +++++++++-
 .../java/hints/jdk/ConvertSwitchToRuleSwitch.java  | 185 +---------
 .../modules/java/hints/resources/layer.xml         |   1 +
 .../java/hints/errors/Bundle_test.properties       |   1 +
 .../hints/errors/DifferentCaseKindsFixTest.java    | 397 +++++++++++++++++++++
 java/java.source.base/apichanges.xml               |  12 +
 java/java.source.base/nbproject/project.properties |   2 +-
 .../org/netbeans/api/java/source/TreeMaker.java    |  14 +-
 .../org/netbeans/api/java/source/WorkingCopy.java  |   6 +
 .../netbeans/modules/java/source/TreeShims.java    |  15 +
 .../modules/java/source/builder/TreeFactory.java   |   7 +-
 .../modules/java/source/matching/CopyFinder.java   |  11 +-
 .../modules/java/source/pretty/VeryPretty.java     |  19 +-
 .../modules/java/source/save/CasualDiff.java       |  31 ++
 .../modules/java/source/save/Reformatter.java      | 160 ++++++---
 .../source/transform/ImmutableTreeTranslator.java  |  13 +
 .../api/java/source/gen/SwitchExpressionTest.java  | 215 +++++++++++
 .../modules/java/source/save/FormatingTest.java    | 381 ++++++++++++++++++++
 .../src/org/netbeans/core/netigso/Netigso.java     |  16 +-
 .../org/netbeans/core/netigso/NetigsoLoader.java   |  10 +-
 .../netigso/NetigsoLoaderOSGiFragmentTest.java     |  90 +++++
 23 files changed, 1676 insertions(+), 250 deletions(-)
 create mode 100644 java/java.hints/src/org/netbeans/modules/java/hints/errors/DifferentCaseKindsFix.java
 create mode 100644 java/java.hints/test/unit/src/org/netbeans/modules/java/hints/errors/DifferentCaseKindsFixTest.java
 create mode 100644 java/java.source.base/test/unit/src/org/netbeans/api/java/source/gen/SwitchExpressionTest.java
 create mode 100644 platform/core.netigso/test/unit/src/org/netbeans/core/netigso/NetigsoLoaderOSGiFragmentTest.java


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

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