forbidden api

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902939 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2022-07-22 10:33:31 +00:00
parent bd5a95acbf
commit 5c34bad8f4
2 changed files with 3 additions and 2 deletions

View File

@ -17,6 +17,7 @@
package org.apache.poi.examples.xslf;
import org.apache.poi.ooxml.POIXMLDocumentPart;
import org.apache.poi.util.LocaleUtil;
import org.apache.poi.xslf.usermodel.*;
import org.openxmlformats.schemas.drawingml.x2006.main.CTBlip;
import org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties;
@ -48,7 +49,7 @@ public class SmartArtConversionDemo {
File inputFile = new File(args[0]);
if (!inputFile.exists()) {
System.out.printf("Unable to find input file at path: %s", args[0]);
System.out.printf(LocaleUtil.getUserLocale(), "Unable to find input file at path: %s", args[0]);
System.exit(1);
}

View File

@ -41,7 +41,7 @@ public class TestXSLFDiagram {
.map(s -> (XSLFDiagram) s)
.collect(Collectors.toList());
}
private static String colorToHex(Color color) {
return String.format("#%02x%02x%02x", color.getRed(), color.getGreen(), color.getBlue());
}