From b577257db1a045533363b3dda0527437e1244eb5 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Sat, 1 Oct 2022 19:52:13 -0400 Subject: [PATCH] Correct @since tags Since tags should be major + minor only. maintenance releases can't change API which is why it doesn't need to be specified. --- .../src/org/eclipse/cdt/cmake/core/CMakeErrorParser.java | 2 +- .../org/eclipse/cdt/cmake/core/CMakeExecutionMarkerFactory.java | 2 +- .../eclipse/cdt/cmake/core/ICMakeExecutionMarkerFactory.java | 2 +- .../org/eclipse/cdt/cmake/core/ParsingConsoleOutputStream.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/CMakeErrorParser.java b/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/CMakeErrorParser.java index 5aa1ca34848..44a77ca5998 100644 --- a/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/CMakeErrorParser.java +++ b/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/CMakeErrorParser.java @@ -36,7 +36,7 @@ import org.eclipse.core.runtime.Status; *

* * @author Martin Weber - * @since 1.5.0 + * @since 1.5 */ public class CMakeErrorParser implements AutoCloseable { diff --git a/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/CMakeExecutionMarkerFactory.java b/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/CMakeExecutionMarkerFactory.java index 46513ac118b..42836613ab8 100644 --- a/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/CMakeExecutionMarkerFactory.java +++ b/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/CMakeExecutionMarkerFactory.java @@ -29,7 +29,7 @@ import org.eclipse.core.runtime.Status; * Default implementation of {@code ICMakeExecutionMarkerFactory}. * * @author Martin Weber - * @since 1.5.0 + * @since 1.5 */ public class CMakeExecutionMarkerFactory implements ICMakeExecutionMarkerFactory { diff --git a/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/ICMakeExecutionMarkerFactory.java b/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/ICMakeExecutionMarkerFactory.java index 59cd5e671ee..465d9769a13 100644 --- a/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/ICMakeExecutionMarkerFactory.java +++ b/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/ICMakeExecutionMarkerFactory.java @@ -22,7 +22,7 @@ import org.eclipse.core.runtime.CoreException; * build. * * @author Martin Weber - * @since 1.5.0 + * @since 1.5 */ @FunctionalInterface public interface ICMakeExecutionMarkerFactory { diff --git a/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/ParsingConsoleOutputStream.java b/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/ParsingConsoleOutputStream.java index 3ce4960040e..d673245d904 100644 --- a/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/ParsingConsoleOutputStream.java +++ b/cmake/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/ParsingConsoleOutputStream.java @@ -20,7 +20,7 @@ import org.eclipse.cdt.core.ConsoleOutputStream; * Intercepts output to a console output stream and forwards it to a CMakeErrorParser for processing. * * @author Martin Weber - * @since 1.5.0 + * @since 1.5 */ public class ParsingConsoleOutputStream extends ConsoleOutputStream {