Skip to content

Commit 93844f6

Browse files
committed
- Updated Intellij related configurations (from Pom.xml updates).
- Validated that IntelliJ still works as expectd with full Maven build and Debugging, manually tested various outputs with Fonts. - Fixed spelling/grammar in comments.
1 parent c80563e commit 93844f6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

apachefop-serverless-az-func/apachefop-serverless-az-func.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
<orderEntry type="library" name="Maven: org.apache.xmlgraphics:batik-dom:1.14" level="project" />
2424
<orderEntry type="library" name="Maven: xalan:xalan:2.7.2" level="project" />
2525
<orderEntry type="library" name="Maven: xalan:serializer:2.7.2" level="project" />
26-
<orderEntry type="library" name="Maven: xml-apis:xml-apis:1.4.01" level="project" />
2726
<orderEntry type="library" name="Maven: org.apache.xmlgraphics:batik-ext:1.14" level="project" />
2827
<orderEntry type="library" name="Maven: org.apache.xmlgraphics:batik-parser:1.14" level="project" />
2928
<orderEntry type="library" name="Maven: org.apache.xmlgraphics:batik-shared-resources:1.14" level="project" />

apachefop-serverless-az-func/src/main/java/com/cajuncoding/apachefop/serverless/utils/ResourceUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public static Path getBaseMappedPath() {
3737
public static Path MapServerPath(Path pathToMap) {
3838
var basePath = getBaseMappedPath();
3939

40-
//Guard to ensure that the path is something inside of the current Base Path,
40+
//Guard to ensure that the path is a valid path inside-of/within the current Base Path,
4141
// otherwise path.relativize() will throw Exceptions.
42-
//NOTE: the Path.startsWith() will be provide a safe/case-insensitive test...
42+
//NOTE: the Path.startsWith() will provide a safe/case-insensitive test...
4343
if(!pathToMap.startsWith(basePath))
4444
return null;
4545

0 commit comments

Comments
 (0)