Adding missing @Override annotations. Some refactoring - #36
Conversation
|
@claude review pr with inline comments |
|
Claude finished @unv-unv's task in 2m 36s —— View job PR Review: Adding missing
|
| @Override | ||
| GenericAttributeValue<String> getInclude(); |
There was a problem hiding this comment.
The added @Override and the re-indented signature use 4 spaces, but this file (and the rest of the codebase) is indented with tabs. @Nonnull above is tab-indented while @Override below is space-indented — mixed indentation within a single declaration.
| @Override | |
| GenericAttributeValue<String> getInclude(); | |
| @Override | |
| GenericAttributeValue<String> getInclude(); |
The same tab→space inconsistency applies to all ~616 @Override lines added across the 100 files in this PR. Configuring the IDE/formatter to use tabs would keep the generated DOM interfaces consistent.
| */ | ||
| @Nonnull | ||
| @Convert(PathReferenceConverter.class) | ||
| @Override |
There was a problem hiding this comment.
@Override is correctly placed here (Compile extends SimpleItem, which declares getInclude()), but it's indented with 4 spaces while the surrounding annotations (@Nonnull, @Convert) use tabs.
| @Override | |
| @Override |
No description provided.