Skip to content

Commit

Permalink
Replace symlinks with duplicate classes (#2888)
Browse files Browse the repository at this point in the history
This is try get around a possible compilation problem on Windows (see also https://forum.exercism.org/t/compilation-failure-in-calculator-conundrum-exercis/14254/5.)
  • Loading branch information
jagdish-15 authored Jan 3, 2025
1 parent dc69bf0 commit bce1d70
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 4 deletions.
1 change: 1 addition & 0 deletions exercises/concept/calculator-conundrum/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"jmrunkle"
],
"contributors": [
"jagdish-15",
"sanderploegsma"
],
"files": {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
public class IllegalOperationException extends RuntimeException {
public IllegalOperationException(String errorMessage) {
super(errorMessage);
}

public IllegalOperationException(String errorMessage, Throwable cause) {
super(errorMessage, cause);
}
}
1 change: 1 addition & 0 deletions exercises/concept/wizards-and-warriors-2/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"sougat818"
],
"contributors": [
"jagdish-15",
"sanderploegsma"
],
"files": {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
public class Character {
private String characterClass;
private int level;
private int hitPoints;

public String getCharacterClass() {
return characterClass;
}

public void setCharacterClass(String characterClass) {
this.characterClass = characterClass;
}

public int getLevel() {
return level;
}

public void setLevel(int level) {
this.level = level;
}

public int getHitPoints() {
return hitPoints;
}

public void setHitPoints(int hitPoints) {
this.hitPoints = hitPoints;
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
public class Destination {
private String name;
private int inhabitants;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public int getInhabitants() {
return inhabitants;
}

public void setInhabitants(int inhabitants) {
this.inhabitants = inhabitants;
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
public enum TravelMethod {
WALKING,
HORSEBACK
}

0 comments on commit bce1d70

Please sign in to comment.