1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-10 15:50:57 +00:00

style: remove unused import

This commit is contained in:
Arnaud Roques 2023-11-11 19:56:03 +01:00
parent 2d47edd326
commit 137d84101f
3 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,6 @@ import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.stream.Collectors;
import net.sourceforge.plantuml.FileFormat;
import net.sourceforge.plantuml.FileFormatOption;
@ -542,7 +541,7 @@ public abstract class CucaDiagram extends UmlDiagram implements GroupHierarchy,
}
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)) {
visibleStereotypeLabels.add(stereoTypeLabel);
}

View File

@ -163,7 +163,7 @@ public class EntityGenderUtils {
};
}
static public EntityGender byClassName(String className) {
static public EntityGender byClassName(final String className) {
return new EntityGender() {
@Override
public boolean contains(Entity test) {

View File

@ -191,6 +191,7 @@ public class CommandHideShowByGender extends SingleLineCommand2<UmlDiagram> {
arg1 = StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(arg1);
final Quark<Entity> quark = diagram.quarkInContext(true, diagram.cleanId(arg1));
if (quark == null) {
// Not sure it could really happens... to be checked
return CommandExecutionResult.error("No such quark " + arg1);
}
if (portion == EntityPortion.METHOD) {