summaryrefslogtreecommitdiffstats
path: root/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java
diff options
context:
space:
mode:
Diffstat (limited to 'libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java')
-rw-r--r--libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java b/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java
deleted file mode 100644
index a927e014600..00000000000
--- a/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/entity/TreeNode.java
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.yst.libmlr.converter.entity;
-
-public class TreeNode {
-
- private String id;
- private String comment;
- private int idx;
-
- public TreeNode(String i, String c) {
- id = i;
- comment = c;
- }
-
- public String getId() {
- return id;
- }
-
- public void setId(String id) {
- this.id = id;
- }
-
- public String getComment() {
- return (comment == null ? "" : comment);
- }
-
- public void setComment(String comment) {
- this.comment = comment;
- }
-
- public int getIndex() {
- return idx;
- }
-
- public void setIndex(int idx) {
- this.idx = idx;
- }
-
-}