Skip to content

Commit

Permalink
Update @ since tags to proper version
Browse files Browse the repository at this point in the history
  • Loading branch information
srikanth-sankaran committed Mar 5, 2024
1 parent dac81bc commit 8b2de1c
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion org.eclipse.jdt.core.compiler.batch/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Main-Class: org.eclipse.jdt.internal.compiler.batch.Main
Bundle-ManifestVersion: 2
Bundle-Name: Eclipse Compiler for Java(TM)
Bundle-SymbolicName: org.eclipse.jdt.core.compiler.batch
Bundle-Version: 3.37.100.qualifier
Bundle-Version: 3.38.0.qualifier
Bundle-ClassPath: .
Bundle-Vendor: Eclipse.org
Automatic-Module-Name: org.eclipse.jdt.core.compiler.batch
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.jdt.core.compiler.batch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<version>4.32.0-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
<version>3.37.100-SNAPSHOT</version>
<version>3.38.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2577,7 +2577,7 @@ public interface IProblem {
int IllegalRecordPattern = TypeRelated + 1941;

/**
* @since 3.37
* @since 3.38
*/
int NamedPatternVariablesDisallowedHere = Internal + 1942;

Expand Down
4 changes: 2 additions & 2 deletions org.eclipse.jdt.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.jdt.core; singleton:=true
Bundle-Version: 3.37.100.qualifier
Bundle-Version: 3.38.0.qualifier
Bundle-Activator: org.eclipse.jdt.core.JavaCore
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down Expand Up @@ -47,7 +47,7 @@ Require-Bundle: org.eclipse.core.resources;bundle-version="[3.18.0,4.0.0)",
org.eclipse.core.filesystem;bundle-version="[1.7.0,2.0.0)",
org.eclipse.text;bundle-version="[3.6.0,4.0.0)",
org.eclipse.team.core;bundle-version="[3.1.0,4.0.0)";resolution:=optional,
org.eclipse.jdt.core.compiler.batch;bundle-version="[3.37.0,3.38.0)";visibility:=reexport
org.eclipse.jdt.core.compiler.batch;bundle-version="3.38.0";visibility:=reexport
Bundle-RequiredExecutionEnvironment: JavaSE-17
Eclipse-ExtensibleAPI: true
Bundle-ActivationPolicy: lazy
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java
Original file line number Diff line number Diff line change
Expand Up @@ -2838,7 +2838,7 @@ public RecordPattern newRecordPattern() {
* Creates and returns a new unparented `either or multi-pattern` node
*
* @return a new unparented `either or multi-pattern` node
* @since 3.37
* @since 3.38
*/
public EitherOrMultiPattern newEitherOrMultiPattern() {
EitherOrMultiPattern result = new EitherOrMultiPattern(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2230,7 +2230,7 @@ public boolean match(RecordPattern node, Object other) {
* @return <code>true</code> if the subtree matches, or
* <code>false</code> if they do not match or the other object has a
* different node type or is <code>null</code>
* @since 3.37
* @since 3.38
*/
public boolean match(EitherOrMultiPattern node, Object other) {
if (!(other instanceof EitherOrMultiPattern)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1102,7 +1102,7 @@ public abstract class ASTNode {
/**
* Node type constant indicating a node of type
* <code>EitherOrMultiPattern</code>.
* @since 3.37
* @since 3.38
* @noreference This field is not intended to be referenced by clients.
*/
public static final int EitherOr_MultiPattern = 118;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1531,7 +1531,7 @@ public boolean visit(RecordPattern node) {
* @return <code>true</code> if the children of this node should be
* visited, and <code>false</code> if the children of this node should
* be skipped
* @since 3.37
* @since 3.38
*/
public boolean visit(EitherOrMultiPattern node) {
return true;
Expand Down Expand Up @@ -3160,7 +3160,7 @@ public void endVisit(RecordPattern node) {
* </p>
*
* @param node the node to visit
* @since 3.37
* @since 3.38
* @noreference This method is not intended to be referenced by clients.
*/
public void endVisit(EitherOrMultiPattern node) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* }
* </pre>
*
* @since 3.37
* @since 3.38
* @noinstantiate This class is not intended to be instantiated by clients.
* @noreference This class is not intended to be referenced by clients.
*/
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.jdt.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<version>4.32.0-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.jdt.core</artifactId>
<version>3.37.100-SNAPSHOT</version>
<version>3.38.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

<properties>
Expand Down

0 comments on commit 8b2de1c

Please sign in to comment.