cleanup: remove redundant '@author' tags from javadoc comments - 11

Now we have Code Vision hints which determine the author via Git history and show it in the editor automatically, and this information is more accurate than the tags which were automatically added when files were created.

GitOrigin-RevId: 29550c08664df748af410d5edb1bdbcbe4969dc5
This commit is contained in:
Nikolay Chashnikov
2023-01-18 09:59:52 +01:00
committed by intellij-monorepo-bot
parent 37ce2ff8a6
commit 2ea9052f16
6 changed files with 0 additions and 18 deletions

View File

@@ -13,9 +13,6 @@ import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* @author Alexey Chmutov
*/
final class BlockUtil {
private BlockUtil() {
}

View File

@@ -15,9 +15,6 @@
*/
package com.intellij.formatting.templateLanguages;
/**
* @author Alexey Chmutov
*/
public interface BlockWithParent {
BlockWithParent getParent();
void setParent(BlockWithParent newParent);

View File

@@ -24,9 +24,6 @@ import org.jetbrains.annotations.Nullable;
import java.util.List;
/**
* @author Alexey Chmutov
*/
public class DataLanguageBlockFragmentWrapper implements Block {
private final Block myOwner;
private final TextRange myRange;

View File

@@ -17,9 +17,6 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* @author Alexey Chmutov
*/
public final class DataLanguageBlockWrapper implements ASTBlock, BlockEx, BlockWithParent {
private final Block myOriginal;
@Nullable private final Language myLanguage;

View File

@@ -28,9 +28,6 @@ import org.jetbrains.annotations.Nullable;
import java.util.ArrayList;
import java.util.List;
/**
* @author Alexey Chmutov
*/
public abstract class TemplateLanguageBlock extends AbstractBlock implements BlockWithParent {
private final TemplateLanguageBlockFactory myBlockFactory;
private final CodeStyleSettings mySettings;

View File

@@ -24,9 +24,6 @@ import org.jetbrains.annotations.Nullable;
import java.util.List;
/**
* @author Alexey Chmutov
*/
public interface TemplateLanguageBlockFactory {
TemplateLanguageBlock createTemplateLanguageBlock(@NotNull ASTNode node,
@Nullable Wrap wrap,