[bug-66306] make XSLFDiagramGroupShape public

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1904555 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2022-10-13 01:38:37 +00:00
parent 2d5d60cb2d
commit ce7c1c92da
1 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ public class XSLFDiagram extends XSLFGraphicFrame {
* Diagrams store relationships to media in `drawing#.xml.rels`. These relationships are accessible using
* {@link #getRelationById(String)}.
*/
static class XSLFDiagramGroupShape extends XSLFGroupShape {
public static class XSLFDiagramGroupShape extends XSLFGroupShape {
private XSLFDiagramDrawing diagramDrawing;
@ -255,7 +255,7 @@ public class XSLFDiagram extends XSLFGraphicFrame {
this.diagramDrawing = diagramDrawing;
}
POIXMLDocumentPart getRelationById(String id) {
public POIXMLDocumentPart getRelationById(String id) {
return diagramDrawing.getRelationById(id);
}
}