Parcourir la source

tidy up code formatting

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1847012 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_0_1^2
PJ Fanning il y a 5 ans
Parent
révision
c199dfc3b6

+ 4
- 5
src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFPictureShape.java Voir le fichier

@@ -173,8 +173,8 @@ public class XSLFPictureShape extends XSLFSimpleShape
CTBlip blip = getBlip();
if (blip != null) {
String link = blip.getLink();
if (link.isEmpty()) return null;
return link;} else {
return (link.isEmpty()) ? null : link;
} else {
return null;
}
}
@@ -183,9 +183,8 @@ public class XSLFPictureShape extends XSLFSimpleShape
protected String getBlipId(){
CTBlip blip = getBlip();
if (blip != null) {
String id = getBlip().getEmbed();
if (id.isEmpty()) return null;
return id;
String id = blip.getEmbed();
return (id.isEmpty()) ? null : id;
} else {
return null;
}

Chargement…
Annuler
Enregistrer