Add GitHub repository scanning to skin converter#2
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| private record ConversionSummary(List<Path> generatedSkins, List<ConversionFailure> failures) { | ||
| } | ||
|
|
||
| System.out.println("Codename One skin created at: " + outputFile); | ||
| private record ConversionFailure(String relativePath, String message) { |
There was a problem hiding this comment.
Avoid Java 14+ syntax in Java 8 project
The project’s build.xml compiles sources with source="1.8"/target="1.8", but this change introduces Java‑14+ features (text blocks, arrow switch labels, and notably the record declarations ConversionSummary/ConversionFailure). These constructs will not compile when the build runs under Java 8, causing the command‑line tool to fail to build. Replace the records and other newer syntax with Java 8 equivalents or raise the configured source level before merging.
Useful? React with 👍 / 👎.
Summary
Testing
Codex Task