| Chunk |
|---|
| Conflicting content |
|---|
final String grouppath = keypath + ".groups"; final String permspath = keypath + ".permissions"; final String worldpath = keypath + ".worlds"; <<<<<<< HEAD //@formatter:off return getEntries(trigger, this.plugin, getNonNullList(this.message.fileConfiguration.getStringList(grouppath)), getNonNullList(this.message.fileConfiguration.getStringList(userpath)), getNonNullList(this.message.fileConfiguration.getStringList(permspath)), getNonNullList(this.message.fileConfiguration.getStringList(worldpath))); //@formatter:on } public static Set |
| Solution content |
|---|
final String grouppath = keypath + ".groups"; final String permspath = keypath + ".permissions"; final String worldpath = keypath + ".worlds"; //@formatter:off return getEntries(trigger, this.plugin, getNonNullList(this.message.fileConfiguration.getStringList(grouppath)), getNonNullList(this.message.fileConfiguration.getStringList(userpath)), getNonNullList(this.message.fileConfiguration.getStringList(permspath)), getNonNullList(this.message.fileConfiguration.getStringList(worldpath))); //@formatter:on } public static Set |
| File |
|---|
| Message.java |
| Developer's decision |
|---|
| Combination |
| Kind of conflict |
|---|
| Comment |
| For statement |
| If statement |
| Method invocation |
| Method signature |
| Return statement |
| Variable |
| Chunk |
|---|
| Conflicting content |
|---|
entries.add(new Permission(perm, Main.getPermissions(), plugin));
}
<<<<<<< HEAD
for (String world : worlds) {
entries.add(new com.tahkeh.loginmessage.entries.World(world, plugin));
=======
for (String world : getNonNullList(message.fileConfiguration.getStringList(worldpath))) {
entries.add(new com.tahkeh.loginmessage.matcher.entries.World(world, plugin));
>>>>>>> 2c48bdd6f3d5d9d5cabc7fe418393e1f0109a167
}
return entries;
} |
| Solution content |
|---|
entries.add(new Permission(perm, Main.getPermissions(), plugin));
}
for (String world : worlds) {
entries.add(new com.tahkeh.loginmessage.matcher.entries.World(world, plugin));
}
return entries;
} |
| File |
|---|
| Message.java |
| Developer's decision |
|---|
| Combination |
| Kind of conflict |
|---|
| For statement |
| Method invocation |
| Chunk |
|---|
| Conflicting content |
|---|
import org.bukkit.OfflinePlayer;
import org.bukkit.entity.Player;
<<<<<<< HEAD
import com.tahkeh.loginmessage.entries.Entry;
import com.tahkeh.loginmessage.methods.variables.bukkit.BukkitVariables;
import com.tahkeh.loginmessage.methods.variables.bukkit.ListVariables;
=======
import com.tahkeh.loginmessage.matcher.DefaultMatcher.SignedTextData;
import com.tahkeh.loginmessage.matcher.entries.Entry;
import com.tahkeh.loginmessage.matcher.entries.Group;
import com.tahkeh.loginmessage.matcher.entries.Op;
import com.tahkeh.loginmessage.matcher.entries.Permission;
import com.tahkeh.loginmessage.matcher.entries.Pub;
import com.tahkeh.loginmessage.matcher.entries.User;
import com.tahkeh.loginmessage.matcher.entries.World;
>>>>>>> 2c48bdd6f3d5d9d5cabc7fe418393e1f0109a167
public class PlayerList {
private final Main plugin; |
| Solution content |
|---|
import org.bukkit.OfflinePlayer;
import org.bukkit.entity.Player;
import com.tahkeh.loginmessage.matcher.DefaultMatcher;
import com.tahkeh.loginmessage.matcher.entries.Entry;
import com.tahkeh.loginmessage.methods.variables.bukkit.ListVariables;
public class PlayerList {
private final Main plugin; |
| File |
|---|
| PlayerList.java |
| Developer's decision |
|---|
| Manual |
| Kind of conflict |
|---|
| Import |
| Chunk |
|---|
| Conflicting content |
|---|
} return players; } <<<<<<< HEAD ======= public Set |
| Solution content |
|---|
} return players; } public Set |
| File |
|---|
| PlayerList.java |
| Developer's decision |
|---|
| Version 1 |
| Kind of conflict |
|---|
| For statement |
| Method invocation |
| Method signature |
| Variable |