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;
@@ -33,9 +33,6 @@ import java.io.PrintStream;
import static org.jetbrains.jet.cli.common.ExitCode.INTERNAL_ERROR;
import static org.jetbrains.jet.cli.common.ExitCode.OK;
/**
* @author Pavel Talanov
*/
public abstract class CLICompiler<A extends CompilerArguments> {
@NotNull
@@ -21,10 +21,6 @@ import org.jetbrains.jet.config.CompilerConfigurationKey;
import java.util.List;
/**
* @author Evgeny Gerashchenko
* @since 7/23/12
*/
public class CLIConfigurationKeys {
public static final CompilerConfigurationKey<MessageCollector> MESSAGE_COLLECTOR_KEY =
CompilerConfigurationKey.create("message collector");
@@ -21,9 +21,6 @@ import org.jetbrains.annotations.NotNull;
import java.util.List;
/**
* @author Pavel Talanov
*/
public abstract class CompilerArguments {
@NotNull
private List<CompilerPlugin> compilerPlugins = Lists.newArrayList();
@@ -16,9 +16,6 @@
package org.jetbrains.jet.cli.common;
/**
* @author abreslav
*/
public class CompilerVersion {
// The value of this constant is generated by the build script
// DON'T MODIFY IT
@@ -16,9 +16,6 @@
package org.jetbrains.jet.cli.common;
/**
* @author Pavel Talanov
*/
public enum ExitCode {
OK(0),
COMPILATION_ERROR(1),
@@ -42,9 +42,6 @@ import java.util.List;
import static org.jetbrains.jet.lang.diagnostics.DiagnosticUtils.sortedDiagnostics;
/**
* @author Pavel Talanov
*/
public final class AnalyzerWithCompilerReport {
@NotNull
@@ -20,9 +20,6 @@ import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiFile;
import org.jetbrains.jet.lang.diagnostics.DiagnosticUtils;
/**
* @author abreslav
*/
public class MessageUtil {
public static CompilerMessageLocation psiElementToMessageLocation(PsiElement element) {
PsiFile file = element.getContainingFile();
@@ -50,9 +50,6 @@ import java.util.List;
import static org.jetbrains.jet.cli.common.messages.CompilerMessageLocation.NO_LOCATION;
/**
* @author Pavel Talanov
*/
public class K2JSCompiler extends CLICompiler<K2JSCompilerArguments> {
public static void main(String... args) {
@@ -21,9 +21,6 @@ import org.jetbrains.annotations.Nullable;
import org.jetbrains.jet.cli.common.CompilerArguments;
import org.jetbrains.k2js.facade.MainCallParameters;
/**
* @author Pavel Talanov
*/
/**
* NOTE: for now K2JSCompiler supports only minimal amount of parameters required to launch it from the plugin.
@@ -23,10 +23,6 @@ import org.jetbrains.jet.lang.resolve.AnalyzerScriptParameter;
import java.io.File;
import java.util.List;
/**
* @author Evgeny Gerashchenko
* @since 7/3/12
*/
public class JVMConfigurationKeys {
private JVMConfigurationKeys() {
}
@@ -47,10 +47,6 @@ import java.util.List;
import static org.jetbrains.jet.cli.common.ExitCode.*;
/**
* @author yole
* @author alex.tkachman
*/
@SuppressWarnings("UseOfSystemOutOrSystemErr")
public class K2JVMCompiler extends CLICompiler<K2JVMCompilerArguments> {
@@ -14,9 +14,6 @@
* limitations under the License.
*/
/*
* @author max
*/
package org.jetbrains.jet.cli.jvm.compiler;
import com.intellij.psi.search.GlobalSearchScope;
@@ -24,9 +24,6 @@ import org.jetbrains.jet.lang.types.ref.JetTypeName;
import java.util.Collections;
import java.util.List;
/**
* @author Stepan Koltsov
*/
public class CommandLineScriptUtils {
private static final Name ARGS_NAME = Name.identifier("args");
@@ -16,9 +16,6 @@
package org.jetbrains.jet.cli.jvm.compiler;
/**
* @author yole
*/
public class CompileEnvironmentException extends RuntimeException {
public CompileEnvironmentException(String message) {
super(message);
@@ -50,9 +50,6 @@ import java.util.ArrayList;
import java.util.List;
import java.util.jar.*;
/**
* @author abreslav
*/
public class CompileEnvironmentUtil {
public static Disposable createMockDisposable() {
return new Disposable() {
@@ -25,10 +25,6 @@ import org.jetbrains.annotations.Nullable;
import java.util.ArrayList;
import java.util.List;
/**
* @author Evgeny Gerashchenko
* @since 14 August 2012
*/
public class CoreExternalAnnotationsManager extends BaseExternalAnnotationsManager {
static {
// This is an ugly workaround for JDOM 1.1 used from application started from Ant 1.8 without forking
@@ -53,9 +53,6 @@ import java.io.File;
import java.util.ArrayList;
import java.util.List;
/**
* @author yole
*/
public class JetCoreEnvironment {
private final JavaCoreApplicationEnvironment applicationEnvironment;
@@ -66,11 +66,6 @@ import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
/**
* @author yole
* @author abreslav
* @author alex.tkachman
*/
public class KotlinToJVMBytecodeCompiler {
private KotlinToJVMBytecodeCompiler() {
@@ -16,9 +16,6 @@
package org.jetbrains.jet.cli.jvm.compiler;
/**
* @author yole
*/
public class ModuleExecutionException extends RuntimeException {
public ModuleExecutionException(String message) {
super(message);
@@ -20,9 +20,6 @@ import org.jetbrains.annotations.NotNull;
import org.jetbrains.jet.lang.descriptors.ScriptDescriptor;
import org.jetbrains.jet.lang.resolve.java.JvmClassName;
/**
* @author Stepan Koltsov
*/
public class EarlierLine {
@NotNull
private final String code;
@@ -25,9 +25,6 @@ import org.jetbrains.asm4.util.TraceClassVisitor;
import java.io.PrintWriter;
import java.util.Map;
/**
* @author Stepan Koltsov
*/
public class ReplClassLoader extends ClassLoader {
private Map<JvmClassName, byte[]> classes = Maps.newLinkedHashMap();
@@ -29,9 +29,6 @@ import java.io.PrintWriter;
import java.util.Arrays;
import java.util.List;
/**
* @author Stepan Koltsov
*/
public class ReplFromTerminal {
private ReplInterpreter replInterpreter;
@@ -66,9 +66,6 @@ import java.net.URLClassLoader;
import java.util.Collections;
import java.util.List;
/**
* @author Stepan Koltsov
*/
public class ReplInterpreter {
private int lineNumber = 0;