mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 06:50:54 +07:00
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:
committed by
intellij-monorepo-bot
parent
37ce2ff8a6
commit
2ea9052f16
@@ -13,9 +13,6 @@ import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author Alexey Chmutov
|
||||
*/
|
||||
final class BlockUtil {
|
||||
private BlockUtil() {
|
||||
}
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
*/
|
||||
package com.intellij.formatting.templateLanguages;
|
||||
|
||||
/**
|
||||
* @author Alexey Chmutov
|
||||
*/
|
||||
public interface BlockWithParent {
|
||||
BlockWithParent getParent();
|
||||
void setParent(BlockWithParent newParent);
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user