Removed @author javadocs from code.

This commit is contained in:
Evgeny Gerashchenko
2012-12-28 17:05:25 +04:00
parent 1de4da28fc
commit e03eaf6dde
1531 changed files with 30 additions and 4700 deletions
@@ -18,9 +18,6 @@ package org.jetbrains.jet.cli.common.messages;
import org.jetbrains.annotations.Nullable;
/**
* @author abreslav
*/
public class CompilerMessageLocation {
public static final CompilerMessageLocation NO_LOCATION = new CompilerMessageLocation(null, -1, -1);
@@ -18,9 +18,6 @@ package org.jetbrains.jet.cli.common.messages;
import java.util.EnumSet;
/**
* @author abreslav
*/
public enum CompilerMessageSeverity {
INFO,
ERROR,
@@ -22,9 +22,6 @@ import java.io.PrintStream;
import java.util.EnumSet;
import java.util.Set;
/**
* @author Stepan Koltsov
*/
public class MessageCollectorPlainTextToStream implements MessageCollector {
public static final EnumSet<CompilerMessageSeverity> VERBOSE = EnumSet.of(CompilerMessageSeverity.LOGGING, CompilerMessageSeverity.OUTPUT);
public static final EnumSet<CompilerMessageSeverity> NON_VERBOSE = EnumSet.complementOf(VERBOSE);
@@ -23,9 +23,6 @@ import java.io.PrintStream;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
/**
* @author Stepan Koltsov
*/
public class MessageCollectorToString implements MessageCollector {
private final ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
private final MessageCollector actualCollector = new MessageCollectorPlainTextToStream(new PrintStream(outputStream),
@@ -22,9 +22,6 @@ import org.jetbrains.annotations.NotNull;
import java.io.PrintWriter;
import java.io.StringWriter;
/**
* @author abreslav
*/
public interface MessageRenderer {
MessageRenderer TAGS = new MessageRenderer() {
@@ -23,9 +23,6 @@ import org.jetbrains.annotations.NotNull;
import java.io.PrintStream;
import java.util.Collection;
/**
* @author Pavel Talanov
*/
public class PrintingMessageCollector implements MessageCollector {
private boolean verbose;