Removed tmp files from astyle.

This commit is contained in:
Achim D. Brucker 2015-06-08 21:44:02 +02:00
parent 1231f773d8
commit 6e1ef3b61f
2 changed files with 0 additions and 109 deletions

View File

@ -1,87 +0,0 @@
/*
* (C) Copyright 2010-2015 SAP SE.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
*/
package eu.aniketos.dasca.dataflow.tests.dummy;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.sql.Connection;
public class IO {
public static Connection getDBConnection() {
// TODO Auto-generated method stub
return null;
}
public static void writeString(String string) {
// TODO Auto-generated method stub
}
public static String readLine(){
/*/ // add/remove '*' to switch
String s = "";
try {
InputStreamReader converter = new InputStreamReader(System.in);
BufferedReader in = new BufferedReader(converter);
s = in.readLine();
} catch (Exception e) {
System.out.println("Error! Exception: "+e);
}
return s;
/*/
return "";
/**/
}
public static String readLine2(){
/*/ // add/remove '*' to switch
String s = "";
try {
InputStreamReader converter = new InputStreamReader(System.in);
BufferedReader in = new BufferedReader(converter);
s = in.readLine();
} catch (Exception e) {
System.out.println("Error! Exception: "+e);
}
return s;
/*/
return "";
/**/
}
public static String readLineGood(){
return "";
}
public static String sanitize(String s){
return "";
}
public static boolean testCondition(int i) throws IllegalArgumentException{
if(i<0){
throw new IllegalArgumentException("number must be positive");
}
return true;
}
public static void a() {
}
public static InputStreamReader getInputStreamReader(){
return null;
}
public static BufferedReader getBufferedReader(){
return null;
}
}

View File

@ -1,22 +0,0 @@
/*
* (C) Copyright 2010-2015 SAP SE.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
*/
package eu.aniketos.dasca.dataflow.tests.dummy;
public class Logger {
public static Logger getLogger(String name){
return null;
}
public void warning(String msg){
}
}