Skip to content

Commit

Permalink
Merge pull request #798 from seadowg/ambiguous-contructor
Browse files Browse the repository at this point in the history
Fix ambiguous constructors
  • Loading branch information
lognaturel authored Oct 10, 2024
2 parents 41029da + b7b7b17 commit 3efbb35
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions src/main/java/org/javarosa/core/model/data/DecimalData.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ public DecimalData() {
public DecimalData(double d) {
this.d = d;
}
public DecimalData(@NotNull Double d) {
setValue(d);
}

@Override
public IAnswerData clone () {
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/org/javarosa/core/model/data/IntegerData.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ public IntegerData() {
public IntegerData(int n) {
this.n = n;
}
public IntegerData(@NotNull Integer n) {
setValue(n);
}

@Override
public IAnswerData clone () {
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/org/javarosa/core/model/data/LongData.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ public LongData() {
public LongData(long n) {
this.n = n;
}
public LongData(@NotNull Long n) {
setValue(n);
}

@Override
public IAnswerData clone () {
Expand Down

0 comments on commit 3efbb35

Please sign in to comment.