| Chunk |
|---|
| Conflicting content |
|---|
public synchronized void reset(boolean force) {
if (myInterface != null) {
try {
<<<<<<< HEAD
myInterface.reset(
Util.splitDirectories(Paths.BooksDirectoryOption().getValue()), force
);
=======
myInterface.reset(Paths.BookPathOption().getValue(), force);
>>>>>>> 9b5718e104b39a65c83df889a38c2b67d0479782
} catch (RemoteException e) {
}
} |
| Solution content |
|---|
public synchronized void reset(boolean force) {
if (myInterface != null) {
try {
myInterface.reset(Paths.BookPathOption().getValue(), force);
} catch (RemoteException e) {
}
} |
| File |
|---|
| BookCollectionShadow.java |
| Developer's decision |
|---|
| Version 2 |
| Kind of conflict |
|---|
| Method invocation |
| Chunk |
|---|
| Conflicting content |
|---|
LibraryImplementation() {
myDatabase = SQLiteBooksDatabase.Instance(LibraryService.this);
<<<<<<< HEAD
reset(Util.splitDirectories(Paths.BooksDirectoryOption().getValue()), true);
=======
reset(Paths.BookPathOption().getValue(), true);
>>>>>>> 9b5718e104b39a65c83df889a38c2b67d0479782
}
public void reset(List |
| Solution content |
|---|
LibraryImplementation() {
myDatabase = SQLiteBooksDatabase.Instance(LibraryService.this);
reset(Paths.BookPathOption().getValue(), true);
}
public void reset(List |
| File |
|---|
| LibraryService.java |
| Developer's decision |
|---|
| Version 2 |
| Kind of conflict |
|---|
| Method invocation |
| Chunk |
|---|
| Conflicting content |
|---|
}
public static String mainBookDirectory() {
<<<<<<< HEAD
return Util.splitDirectories(BooksDirectoryOption().getValue()).get(0);
=======
final List |
| Solution content |
|---|
}
public static String mainBookDirectory() {
final List |
| File |
|---|
| Paths.java |
| Developer's decision |
|---|
| Version 2 |
| Kind of conflict |
|---|
| Method invocation |
| Return statement |
| Variable |
| Chunk |
|---|
| Conflicting content |
|---|
public class FileFirstLevelTree extends FirstLevelTree {
FileFirstLevelTree(RootTree root) {
super(root, ROOT_FILE_TREE);
<<<<<<< HEAD
List |
| Solution content |
|---|
public class FileFirstLevelTree extends FirstLevelTree {
FileFirstLevelTree(RootTree root) {
super(root, ROOT_FILE_TREE);
for (String dir : Paths.BookPathOption().getValue()) {
addChild(dir, "fileTreeLibrary", dir);
}
addChild("/", "fileTreeRoot", null);
addChild(Paths.cardDirectory(), "fileTreeCard", null);
}
private void addChild(String path, String resourceKey, String summary) { |
| File |
|---|
| FileFirstLevelTree.java |
| Developer's decision |
|---|
| Version 2 |
| Kind of conflict |
|---|
| For statement |
| If statement |
| Method invocation |
| Variable |