mirror of
https://github.com/octoleo/plantuml.git
synced 2025-04-06 10:11:52 +00:00
style: remove unused import
This commit is contained in:
parent
2d47edd326
commit
137d84101f
@ -46,7 +46,6 @@ import java.util.Map;
|
|||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
import java.util.stream.Collectors;
|
|
||||||
|
|
||||||
import net.sourceforge.plantuml.FileFormat;
|
import net.sourceforge.plantuml.FileFormat;
|
||||||
import net.sourceforge.plantuml.FileFormatOption;
|
import net.sourceforge.plantuml.FileFormatOption;
|
||||||
@ -542,7 +541,7 @@ public abstract class CucaDiagram extends UmlDiagram implements GroupHierarchy,
|
|||||||
}
|
}
|
||||||
|
|
||||||
List<String> visibleStereotypeLabels = new ArrayList<>();
|
List<String> visibleStereotypeLabels = new ArrayList<>();
|
||||||
for (String stereoTypeLabel: entity.getStereotype().getLabels(Guillemet.DOUBLE_COMPARATOR)) {
|
for (String stereoTypeLabel : entity.getStereotype().getLabels(Guillemet.DOUBLE_COMPARATOR)) {
|
||||||
if (isHiddenStereotypeLabel(stereoTypeLabel, commands)) {
|
if (isHiddenStereotypeLabel(stereoTypeLabel, commands)) {
|
||||||
visibleStereotypeLabels.add(stereoTypeLabel);
|
visibleStereotypeLabels.add(stereoTypeLabel);
|
||||||
}
|
}
|
||||||
|
@ -163,7 +163,7 @@ public class EntityGenderUtils {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
static public EntityGender byClassName(String className) {
|
static public EntityGender byClassName(final String className) {
|
||||||
return new EntityGender() {
|
return new EntityGender() {
|
||||||
@Override
|
@Override
|
||||||
public boolean contains(Entity test) {
|
public boolean contains(Entity test) {
|
||||||
|
@ -191,6 +191,7 @@ public class CommandHideShowByGender extends SingleLineCommand2<UmlDiagram> {
|
|||||||
arg1 = StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(arg1);
|
arg1 = StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(arg1);
|
||||||
final Quark<Entity> quark = diagram.quarkInContext(true, diagram.cleanId(arg1));
|
final Quark<Entity> quark = diagram.quarkInContext(true, diagram.cleanId(arg1));
|
||||||
if (quark == null) {
|
if (quark == null) {
|
||||||
|
// Not sure it could really happens... to be checked
|
||||||
return CommandExecutionResult.error("No such quark " + arg1);
|
return CommandExecutionResult.error("No such quark " + arg1);
|
||||||
}
|
}
|
||||||
if (portion == EntityPortion.METHOD) {
|
if (portion == EntityPortion.METHOD) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user