Skip to content

Commit

Permalink
[#314] fixed some merge problems
Browse files Browse the repository at this point in the history
  • Loading branch information
vbmacher committed Mar 26, 2023
1 parent 646f950 commit c11d070
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ public String getName() {
return toString();
}

@Override
public String toString() {
return "MITS 88-SIO control channel";
}

@Override
public String toString() {
return "88-SIO Control Channel";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@ public String getName() {
return toString();
}

@Override
public String toString() {
return "MITS 88-SIO data channel";
}

private byte mapCharacter(byte data) {
if (data == DELETE_CHAR) {
data = settings.getMapDeleteChar() == SioUnitSettings.MAP_CHAR.BACKSPACE ? BACKSPACE_CHAR : DELETE_CHAR;
Expand All @@ -70,6 +65,6 @@ private byte mapCharacter(byte data) {

@Override
public String toString() {
return "88 SIO Data Channel";
return "88-SIO Data Channel";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,6 @@ public class MemoryGui extends JDialog {
private final EraseMemoryAction eraseMemoryAction;
private final SettingsAction settingsAction;

private final LoadImageAction loadImageAction;
private final DumpMemoryAction dumpMemoryAction;
private final GotoAddressAction gotoAddressAction;
private final FindSequenceAction findSequenceAction;


public MemoryGui(JFrame parent, MemoryImpl memory, MemoryContextImpl context, PluginSettings settings, Dialogs dialogs) {
super(parent);

Expand Down

0 comments on commit c11d070

Please sign in to comment.