Skip to content

Commit

Permalink
Merge branch 'main' into asset-log
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenGnu committed Oct 17, 2024
2 parents d7ab281 + 9604162 commit 50ddbf5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/test/java/net/nikr/eve/jeveasset/tests/mocks/FakeSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -777,4 +777,24 @@ public void setIndustryJobsHistory(boolean journalHistory) {
public boolean isIndustryJobsHistory() {
throw new UnsupportedOperationException("not implemented");
}

@Override
public void setAssetsContractsOwnerBoth(boolean assetsContractsOwnerBoth) {
throw new UnsupportedOperationException("not implemented");
}

@Override
public boolean isAssetsContractsOwnerBoth() {
throw new UnsupportedOperationException("not implemented");
}

@Override
public void setAssetsContractsOwnerCorporation(boolean assetsContractsOwnerCorporation) {
throw new UnsupportedOperationException("not implemented");
}

@Override
public boolean isAssetsContractsOwnerCorporation() {
throw new UnsupportedOperationException("not implemented");
}
}

0 comments on commit 50ddbf5

Please sign in to comment.