Skip to content

Commit

Permalink
remove change to DatasetNode, see issue Unidata#1284
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnLCaron committed May 14, 2019
1 parent d74769d commit a179e2c
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions cdm/src/main/java/thredds/client/catalog/DatasetNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
*/
package thredds.client.catalog;

import com.google.common.base.MoreObjects;
import thredds.client.catalog.builder.DatasetBuilder;

import javax.annotation.concurrent.Immutable;
Expand Down Expand Up @@ -114,13 +113,4 @@ public List getLocalFieldAsList(String fldName) {
}
return new ArrayList(0);
}

@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("parent", parent)
.add("name", name)
.add("flds", flds)
.toString();
}
}

0 comments on commit a179e2c

Please sign in to comment.