1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-27 07:42:10 +03:00

Indent jdbc case labels using pgjindent.

This commit is contained in:
Bruce Momjian
2001-11-19 23:16:46 +00:00
parent 6c8120d68c
commit 09634eafe1
32 changed files with 1224 additions and 1199 deletions

View File

@@ -9,7 +9,7 @@ import org.omg.CosNaming.*;
*
* It has no GUI, just a text frontend to keep it simple.
*
* $Id: StockClient.java,v 1.3 2001/11/19 22:43:13 momjian Exp $
* $Id: StockClient.java,v 1.4 2001/11/19 23:16:45 momjian Exp $
*/
public class StockClient
{
@@ -116,29 +116,29 @@ public class StockClient
int i = getMenu("Main", 5);
switch (i)
{
case 0:
run = false;
break;
case 0:
run = false;
break;
case 1:
displayItem();
break;
case 1:
displayItem();
break;
case 2:
bookOut();
break;
case 2:
bookOut();
break;
case 3:
bookIn();
break;
case 3:
bookIn();
break;
case 4:
order(0);
break;
case 4:
order(0);
break;
case 5:
displayAll();
break;
case 5:
displayAll();
break;
}
}
}