Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,13 @@ Entries land here as they merge.

### Internal

- **Removed the `java.awt.*` / `java.util.*` co-wildcard in four files.**
`InvoiceTemplateComposer`, `ProposalTemplateComposer`,
`WeeklyScheduleTemplateComposer`, and the engine `PdfRenderingSystemECS`
imported both wildcards, leaving `List` resolvable from either
`java.awt.List` or `java.util.List` — sound today only because `java.awt.List`
was never referenced. Each used only `java.awt.Color`, so the wildcard is now
an explicit `import java.awt.Color;`. No behaviour change.
- **Sweep follow-up note for future bisectors.** The v1.8.0 import/Javadoc
sweep (`f04a7dce`, part of #162) also carried mechanical code rewrites in
roughly 40 files beyond its stated scope: ~30 private preset `Template`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import com.demcha.compose.engine.components.style.Margin;
import com.demcha.compose.engine.components.style.Padding;

import java.awt.*;
import java.awt.Color;
import java.util.*;
import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import com.demcha.compose.engine.components.style.Margin;
import com.demcha.compose.engine.components.style.Padding;

import java.awt.*;
import java.awt.Color;
import java.util.*;
import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import com.demcha.compose.engine.components.style.Margin;
import com.demcha.compose.engine.components.style.Padding;

import java.awt.*;
import java.awt.Color;
import java.util.*;
import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.awt.*;
import java.awt.Color;
import java.io.IOException;
import java.util.*;
import java.util.List;
Expand Down