Skip to content

Commit

Permalink
Tiles: Correct I18nFactorySet.initFactory under windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ste-gr committed Mar 27, 2024
1 parent 85520ad commit e29beab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 1.5.0 / YYYY-MM-DD

* Tiles: Correct `I18nFactorySet.initFactory` under windows
* Set Version to 1.5.0-SNAPSHOT
* Update documentation to version 1.5.0

Expand Down
1 change: 1 addition & 0 deletions src/site/xdoc/userGuide/release-notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
<subsection name="Issue Tracking" id="Highlight">
<h4>Bug</h4>
<ul>
<li>Tiles: Correct &quot;I18nFactorySet.initFactory&quot; under windows</li>
<li>With <strong>Release Candidate 1 &amp; 2</strong>:
<ul>
<li>Skip &quot;bnd-maven-pluin&quot; in integration-tests</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ protected void initFactory(
try {
final Path p = Paths.get(fn).normalize();
if (p.toString().charAt(0) != '.') {
this.filenames.add(p.toString());
this.filenames.add(fn);
} else {
log.warn("Factory initialization - path not normalized '{}'", p.toString());
}
Expand Down

0 comments on commit e29beab

Please sign in to comment.