diff --git a/java/compiler/openapi/src/com/intellij/openapi/compiler/Compiler.java b/java/compiler/openapi/src/com/intellij/openapi/compiler/Compiler.java index 5393a7d5abb3..2c6da0ff8ff0 100644 --- a/java/compiler/openapi/src/com/intellij/openapi/compiler/Compiler.java +++ b/java/compiler/openapi/src/com/intellij/openapi/compiler/Compiler.java @@ -1,4 +1,4 @@ -// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +// Copyright 2000-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.openapi.compiler; import com.intellij.openapi.extensions.ProjectExtensionPointName; @@ -8,7 +8,7 @@ import org.jetbrains.annotations.NotNull; /** * Base interface for a custom compiler which participates in the build process and should be executed inside the IDE process. * @deprecated since IDEA 15 compilers need to be executed inside a separate (external) build process, see - * this guide + * this guide * for details. If you need to run some code inside the IDE process before the external build process starts or after it finishes, use * {@link CompileTask} extension point instead. Implementations of this class aren't used by the IDE (except those which implement * {@link Validator} or {@link SourceInstrumentingCompiler}). diff --git a/java/compiler/openapi/src/com/intellij/openapi/compiler/CompilerFilter.java b/java/compiler/openapi/src/com/intellij/openapi/compiler/CompilerFilter.java index 7f6271a3d68f..d889c7966955 100644 --- a/java/compiler/openapi/src/com/intellij/openapi/compiler/CompilerFilter.java +++ b/java/compiler/openapi/src/com/intellij/openapi/compiler/CompilerFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2024 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ package com.intellij.openapi.compiler; /** * @deprecated this interface is a part of the obsolete build system which runs as part of the IDE process. Since IDEA 12 plugins need to - * integrate into 'external build system' instead (http://www.jetbrains.org/intellij/sdk/docs/reference_guide/frameworks_and_external_apis/external_builder_api.html). + * integrate into 'external build system' instead (guide). * Since IDEA 13 users cannot switch to the old build system via UI and it will be completely removed in IDEA 14. */ @Deprecated(forRemoval = true) diff --git a/java/compiler/openapi/src/com/intellij/openapi/compiler/FileProcessingCompiler.java b/java/compiler/openapi/src/com/intellij/openapi/compiler/FileProcessingCompiler.java index 6917a74110e7..edc91a0e167a 100644 --- a/java/compiler/openapi/src/com/intellij/openapi/compiler/FileProcessingCompiler.java +++ b/java/compiler/openapi/src/com/intellij/openapi/compiler/FileProcessingCompiler.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2024 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,7 +24,7 @@ import org.jetbrains.annotations.Nullable; * and should be executed inside the IDE process. * * @deprecated starting from IDEA 15 compilers need to be executed inside a separate (external) build process, see - * this guide + * this guide * for details. Implementations of this class aren't used by the IDE (except those which implement {@link Validator} or {@link SourceInstrumentingCompiler}). */ @Deprecated diff --git a/java/compiler/openapi/src/com/intellij/openapi/compiler/SourceInstrumentingCompiler.java b/java/compiler/openapi/src/com/intellij/openapi/compiler/SourceInstrumentingCompiler.java index fbba56d116ca..e8233ff06cdf 100644 --- a/java/compiler/openapi/src/com/intellij/openapi/compiler/SourceInstrumentingCompiler.java +++ b/java/compiler/openapi/src/com/intellij/openapi/compiler/SourceInstrumentingCompiler.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2024 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,7 +18,7 @@ package com.intellij.openapi.compiler; /** * An interface for compilers which instrument some sources before the compilation starts. Note that it's better to perform compilation-related * tasks inside inside a separate (external) build process, see - * this guide + * this guide * for details. If you really need to perform the instrumentation inside the IDE process (e.g. because it operates on PSI structures), * implement this interface and register the implementation in plugin.xml: *
diff --git a/jps/jps-builders/src/org/jetbrains/jps/builders/package-info.java b/jps/jps-builders/src/org/jetbrains/jps/builders/package-info.java
index f4ac53a9f5b7..efc7850a00bf 100644
--- a/jps/jps-builders/src/org/jetbrains/jps/builders/package-info.java
+++ b/jps/jps-builders/src/org/jetbrains/jps/builders/package-info.java
@@ -1,7 +1,7 @@
-// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
+// Copyright 2000-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
 
 /**
  * API and implementation of the external build process.
- * @see High-level overview of external build process API
+ * @see High-level overview of external build process API
  */
 package org.jetbrains.jps.builders;
\ No newline at end of file
diff --git a/platform/analysis-api/src/com/intellij/codeInspection/package.html b/platform/analysis-api/src/com/intellij/codeInspection/package.html
index aca72f3d1f58..999076840965 100644
--- a/platform/analysis-api/src/com/intellij/codeInspection/package.html
+++ b/platform/analysis-api/src/com/intellij/codeInspection/package.html
@@ -1,5 +1,5 @@