-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
martin
committed
Mar 5, 2026
1 parent
cac776a
commit 56eb0b3
Showing
14 changed files
with
158 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "java.configuration.updateBuildConfiguration": "interactive", | ||
| "java.format.settings.profile": "GoogleStyle", | ||
| "editor.formatOnSave": true, | ||
| "editor.defaultFormatter": "redhat.java", | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1 @@ | ||
| public class Main { | ||
| } | ||
| public class Main {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,12 @@ | ||
| package temppackage; | ||
|
|
||
| public class Purchase extends Transaction{ | ||
| public class Purchase extends Transaction { | ||
|
|
||
| public Purchase(Share share, int week) {} | ||
|
|
||
| public Purchase(Share share, int week){ | ||
|
|
||
|
|
||
| } | ||
|
|
||
| @Override | ||
| public void commit(Player player) { | ||
| // TODO Auto-generated method stub | ||
| super.commit(player); | ||
| } | ||
|
|
||
| @Override | ||
| public void commit(Player player) { | ||
| // TODO Auto-generated method stub | ||
| super.commit(player); | ||
| } | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,11 @@ | ||
| package temppackage; | ||
|
|
||
| public class Sale extends Transaction{ | ||
| public Sale(Share share, int week){ | ||
|
|
||
| } | ||
|
|
||
| @Override | ||
| public void commit(Player player) { | ||
| // TODO Auto-generated method stub | ||
| super.commit(player); | ||
| } | ||
|
|
||
| public class Sale extends Transaction { | ||
| public Sale(Share share, int week) {} | ||
|
|
||
| @Override | ||
| public void commit(Player player) { | ||
| // TODO Auto-generated method stub | ||
| super.commit(player); | ||
| } | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.