Skip to content

Commit

Permalink
feat: modify variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
lenoxzhao committed Sep 14, 2023
1 parent 3bcfbb2 commit 6b83b37
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ public RMLabelContainer(List<Label<?>> labels) {
try {
if (getUserCreatorLabel() != null && getEngineTypeLabel() != null) {
List<Label> combinedLabel = Lists.newArrayList(getUserCreatorLabel(), getEngineTypeLabel());
ClusterLabel tempClusterLabel = getClusterLabel();
if (shouldCombinedClusterLabel(tempClusterLabel)) {
combinedLabel.add(tempClusterLabel);
ClusterLabel clusterLabel = getClusterLabel();
if (shouldCombinedClusterLabel(clusterLabel)) {
combinedLabel.add(clusterLabel);
}
this.combinedResourceLabel = (CombinedLabel) combinedLabelBuilder.build("", combinedLabel);
this.labels.add(combinedResourceLabel);
Expand Down

0 comments on commit 6b83b37

Please sign in to comment.