forked from jverein/jverein
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Buchungsklasse bei Splitbuchung übernehmen #535
Merged
JohannMaierhofer
merged 2 commits into
openjverein:master
from
JohannMaierhofer:splitbuchung_bk_kopieren
Dec 17, 2024
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ich fände es super, wenn wir anfangen würden, Konstanten für die Strings zu verwenden.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Könnt ihr mir erklären was das in dieser Art von File für einen Vorteil bringen soll. Das ist doch hier einfach nur doppelte Arbeit und doppelt fehleranfällig.
Ich sehe da nicht wirklich einen Vorteil.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was meinst du mit "doppelte Arbeit" und "doppelt fehleranfällig"?
Die Konstante deklarieren und dann zweimal verwenden? Einmal hier und einmal in der Zeile, die mit 003d6be eingefügt wurde? Außerdem werden Feldnamen ja auch noch in anderen Java-Dateien (z. B. db updates) verwendet.
Konstanten haben den Vorteil, dass der Compiler deren Verwendung checkt. Wenn man einen Tippfehler macht, meckert er sofort. Das kann er bei Strings nicht erkennen. Außerdem lassen sich Strings nicht refactoren im Sinne von umbenennen, Konstanten schon. Falls man doch mal die Deklaration, also den String ändern will/muss, macht man das genau an einer Stelle. Das ist dann weniger fehleranfällig, als mehrere Strings zu ändern und ggf. einen zu übersehen, auch wenn es insgesamt ganz wenige Strings sind.
Zu guter Letzt kann man noch die Verwendung von Konstanten ganz einfach feststellen: Rechtsklick -> References. Das geht auch nicht mit Strings.
Das Refactoring von Strings funktioniert insofern ganz gut, als das man Rechtsklick -> Refactor -> Extract Constant... wählen kann.
In meinen Projekten verwende ich durchgehend Konstanten statt Strings, mit Ausnahme von englischen Fehlermeldungen, die exalt so ins log geschrieben werden sollen. Das reduziere ich jedoch auch weitestgehend, da sie nicht lokalisierbar/übersetzbar sind.
Bitte verstehe mich nicht falsch. Es ist nur ein Vorschlag, der meiner Ansicht nach die Code Qualität und das spätere Arbeiten verbessert.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, habe es verstanden. Das macht wohl dann Sinn.
Dann reicht es aber nicht nur die zwei Zeilen zu ändern. Dann muss ich auch alle Stellen finden wo der String verwendet wird damit das mit dem umbenennen usw. auch wirklich funktioniert.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ist dein Freund. 😄 Es wäre schon mal ein Anfang, wenn man es in der einen Datei macht. Dann kann man projektweit suchen, wo es ggf. noch als String verwendet wird.