summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java')
-rw-r--r--src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java b/src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java
deleted file mode 100644
index c159af9..0000000
--- a/src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.att.ecomp.dcae.ci.ui.rule_editor.components;
-
-import org.openqa.selenium.WebElement;
-import org.openqa.selenium.support.ui.WebDriverWait;
-
-public class BaseComponenet {
-
- protected WebDriverWait wait;
- protected WebElement root;
-
- public BaseComponenet(WebDriverWait timeout, WebElement element) {
- this.wait = timeout;
- this.root = element;
- }
-}