Reformat whole codebase using Android Studio

This commit is contained in:
Manuel Fuhr 2022-07-11 06:30:17 +02:00
parent d5322667d5
commit c15913c1ab
161 changed files with 15124 additions and 18537 deletions

View file

@ -1,28 +1,24 @@
import java.io.*;
public class BRouterTests
{
public static void main( String[] args ) throws Exception
{
BufferedReader br = new BufferedReader( new FileReader( args[0] ) );
public class BRouterTests {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new FileReader(args[0]));
String lastname = "ups";
for(;;)
{
for (; ; ) {
String line = br.readLine();
if ( line == null ) break;
if (line == null) break;
line = line.trim();
if ( line.length() == 0 ) continue;
if ( !Character.isDigit( line.charAt( 0 ) ) )
{
if (line.length() == 0) continue;
if (!Character.isDigit(line.charAt(0))) {
lastname = line;
continue;
}
System.out.println( "/java/bin/java -Xmx32m -jar brouter.jar segments " + line + " /var/www/brouter/profiles2/trekking.brf" );
System.out.println( "mv mytrack0.gpx gpx/" + lastname + ".gpx" );
System.out.println( "mv mylog0.csv csv/" + lastname + ".csv" );
System.out.println("/java/bin/java -Xmx32m -jar brouter.jar segments " + line + " /var/www/brouter/profiles2/trekking.brf");
System.out.println("mv mytrack0.gpx gpx/" + lastname + ".gpx");
System.out.println("mv mylog0.csv csv/" + lastname + ".csv");
}
}
}