Skip to content

Commit

Permalink
Ignore cyclic dependency situations
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufbulentavci committed Jun 30, 2022
1 parent b89cc87 commit ce83953
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/ozgurdbsync/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ public class Main {

public static void main(String[] args) throws IOException, SQLException {
//
// if (args.length != 1)
// throw new RuntimeException("Usage: java -cp ./ozgurdbsynch.jar ozgurdbsync/Main path.ini.file");
//
// Ini ini = new Ini(args[0]);
Ini ini = new Ini("/home/ybavci/workspace/ozgurdbsync/src/test/resources/altin_test.ini");
if (args.length != 1)
throw new RuntimeException("Usage: java -cp ./ozgurdbsynch.jar ozgurdbsync/Main path.ini.file");

Ini ini = new Ini(args[0]);
// Ini ini = new Ini("/home/ybavci/workspace/ozgurdbsync/src/test/resources/altin_test.ini");

Map<String, TableProps> tableProps = new HashMap<String, TableProps>();

Expand Down

0 comments on commit ce83953

Please sign in to comment.