Remove KotlinSignature annotations from project code

This commit is contained in:
Alexander Udalov
2015-10-11 18:28:02 +03:00
parent b378969a0a
commit baaa3ef50a
36 changed files with 7 additions and 370 deletions
@@ -16,7 +16,6 @@
package org.jetbrains.kotlin.utils;
import kotlin.jvm.KotlinSignature;
import org.jetbrains.annotations.NotNull;
import java.util.*;
@@ -78,17 +77,14 @@ public class DFS {
}
public interface NodeHandler<N, R> {
@KotlinSignature("fun beforeChildren(current: N): Boolean")
boolean beforeChildren(N current);
@KotlinSignature("fun afterChildren(current: N): Unit")
void afterChildren(N current);
R result();
}
public interface Neighbors<N> {
@KotlinSignature("fun getNeighbors(current: N): Iterable<N>")
@NotNull
Iterable<? extends N> getNeighbors(N current);
}