Skip to content

Commit

Permalink
Apply Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
byeonggiljun committed Mar 4, 2024
1 parent 5a33a65 commit 900a6bd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public void update(
.map(Objects::toString)
.toList();
fileListProperty.update(config, files);
} else if (property.updateBehavior.equals(UpdateBehavior.IGNORE)){
} else if (property.updateBehavior.equals(UpdateBehavior.IGNORE)) {
// Use the imported file's configuration.
p.get().update(this, pair, err);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public final class CargoDependenciesProperty
public static final CargoDependenciesProperty INSTANCE = new CargoDependenciesProperty();

private CargoDependenciesProperty() {
super(new CargoDependenciesPropertyType(), UpdateBehavior.IGNORE);
super(new CargoDependenciesPropertyType(), UpdateBehavior.OVERRIDE);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public final class CompileDefinitionsProperty
public static final CompileDefinitionsProperty INSTANCE = new CompileDefinitionsProperty();

private CompileDefinitionsProperty() {
super(StringDictionaryType.COMPILE_DEFINITION, UpdateBehavior.APPEND);
super(StringDictionaryType.COMPILE_DEFINITION, UpdateBehavior.OVERRIDE);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public abstract class StringProperty extends TargetProperty<String, PrimitiveType> {

public StringProperty() {
super(PrimitiveType.STRING, UpdateBehavior.APPEND);
super(PrimitiveType.STRING, UpdateBehavior.OVERRIDE);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public enum UpdateBehavior {
OVERRIDE,
APPEND,
IGNORE;

/** Return the name in lower case. */
@Override
public String toString() {
Expand All @@ -32,7 +32,7 @@ public String toString() {
/** The type of values assignable to this target property. */
public final S type;

/** The behavior */
/** The behavior */
public final UpdateBehavior updateBehavior;

/**
Expand Down

0 comments on commit 900a6bd

Please sign in to comment.