| Chunk |
|---|
| Conflicting content |
|---|
ResultSet result = sCount.executeQuery();
if (result.next()) {
int count = result.getInt(1);
<<<<<<< HEAD
if(count == 0) return null;
=======
if( count==0 ) return null;
>>>>>>> 54f12adb0e71ebd454dd81223c1545b74db4c83f
int item = (new Random()).nextInt(count) + 1;
PreparedStatement statement = conn.prepareStatement( |
| Solution content |
|---|
ResultSet result = sCount.executeQuery();
if (result.next()) {
int count = result.getInt(1);
if(count == 0) return null;
int item = (new Random()).nextInt(count) + 1;
PreparedStatement statement = conn.prepareStatement( |
| File |
|---|
| TitleDB.java |
| Developer's decision |
|---|
| Version 1 |
| Kind of conflict |
|---|
| If statement |
| Chunk |
|---|
| Conflicting content |
|---|
section = new LinkedList |
| Solution content |
|---|
section = new LinkedList |
| File |
|---|
| SillyConfiguration.java |
| Developer's decision |
|---|
| Version 1 |
| Kind of conflict |
|---|
| Method invocation |