Thomas Hammer
Thomas Hammer
I just made a [pull-request](https://github.com/SAP/styleguides/pull/101) to make some examples how to avoid name clashes like you describe it. Maybe we can extend it to also cover the type vs. variable...
Why do you want to distinguish at all? ```abap class z_static_vs_instance definition public final create public. public section. class-methods static_method. methods instance_method. methods calling_method. protected section. private section. endclass. class...
If you want to write fault tolerant software where the user might not have access to the backend, then you want to transport an error message to the frontend. Also,...
Here some more arguments which came out of another discussion about `ASSERT` and how and if to include it into the clean code document: --- - The two `ASSERT` variants...
I have the same issue as mentioned above. So far I opened a database which is synchronized by the NextCloud client. I opened it from KeepassDX as "Existing Database" and...
I had the issue without NextCloud involved. Now with KeepassDX 3.3 the issue was still there, BUT when I read above that it now works for others, I deleted the...
I second the comment from @obr-sap and would even change the title to "Should ignore classes marked with FOR TESTING". The workaround would be to create getter and setter methods,...