Skip to content
Open

n/a #7951

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@
/**
* Tests for {@code TreeTraverser}.
*
* @deprecated Use {@link com.google.common.graph.Traverser} instead.
* @author Louis Wasserman
*/
@GwtCompatible
@NullMarked
public class TreeTraverserTest extends TestCase {
@Deprecated // Use com.google.common.graph.Traverser instead.
public
class TreeTraverserTest extends TestCase {
private static class Node {
final char value;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,14 @@
* their equivalent on the result of {@code Traverser.forTree(tree)} where {@code tree}
* implements {@code SuccessorsFunction}, which has a similar API as {@link #children} or can be
* the same lambda function as passed into {@link #using(Function)}.
* <p>This class is scheduled to be removed in October 2019.
*/
// TODO(b/68134636): Remove by 2019-10
// This class is now only available externally for backwards compatibility; it should not be used
// internally (hence the package-private visibility and @Deprecated annotation).
@Deprecated
@Beta
@GwtCompatible
public abstract class TreeTraverser<T> {
public
abstract class TreeTraverser<T> {
/** Constructor for use by subclasses. */
public TreeTraverser() {}

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@
/**
* Tests for {@code TreeTraverser}.
*
* @deprecated Use {@link com.google.common.graph.Traverser} instead.
* @author Louis Wasserman
*/
@GwtCompatible
@NullMarked
public class TreeTraverserTest extends TestCase {
@Deprecated // Use com.google.common.graph.Traverser instead.
public
class TreeTraverserTest extends TestCase {
private static class Node {
final char value;

Expand Down
Loading
Loading