1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

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.
This commit is contained in:
Jonah Graham 2022-10-01 19:52:13 -04:00
parent e204bee657
commit b577257db1
4 changed files with 4 additions and 4 deletions

View file

@ -36,7 +36,7 @@ import org.eclipse.core.runtime.Status;
* </p>
*
* @author Martin Weber
* @since 1.5.0
* @since 1.5
*/
public class CMakeErrorParser implements AutoCloseable {

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {