(int n, boolean printSpace)
| 181 | } |
| 182 | |
| 183 | static String AddSpaces(int n, boolean printSpace) { |
| 184 | StringBuffer str = new StringBuffer(); |
| 185 | for (int i = 0; i < n; ++i) { |
| 186 | if (printSpace) |
| 187 | str.append(" "); |
| 188 | else |
| 189 | str.append("-"); |
| 190 | } |
| 191 | return str.toString(); |
| 192 | } |
| 193 | |
| 194 | static void DisplayTable(String[][] table, Operator op, DataBag bag, |
| 195 | StringBuffer output) throws FrontendException { |
no test coverage detected