Version 2.0.0: update sources
[jvcard.git] / src / com / googlecode / lanterna / gui2 / table / TableCellBorderStyle.java
diff --git a/src/com/googlecode/lanterna/gui2/table/TableCellBorderStyle.java b/src/com/googlecode/lanterna/gui2/table/TableCellBorderStyle.java
deleted file mode 100644 (file)
index 849fc0e..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.googlecode.lanterna.gui2.table;
-
-/**
- * Describing how table cells are separated when drawn
- */
-public enum TableCellBorderStyle {
-    /**
-     * There is no separation between table cells, they are drawn immediately next to each other
-     */
-    None,
-    /**
-     * There is a single space of separation between the cells, drawn as a single line
-     */
-    SingleLine,
-    /**
-     * There is a single space of separation between the cells, drawn as a double line
-     */
-    DoubleLine,
-    /**
-     * There is a single space of separation between the cells, kept empty
-     */
-    EmptySpace,
-}