Skip to content

Commit 97bab8a

Browse files
author
Bastian Ulke
committed
Remove unused @transient markers.
1 parent d6a396a commit 97bab8a

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

engine/schema/src/com/cloud/host/HostVO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ public String getHypervisorVersion() {
696696
}
697697

698698
@Override
699-
@Transient
699+
// @Transient
700700
public Status getState() {
701701
return status;
702702
}

engine/schema/src/com/cloud/service/ServiceOfferingVO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public boolean getDefaultUse() {
216216
}
217217

218218
@Override
219-
@Transient
219+
// @Transient
220220
public String[] getTagsArray() {
221221
String tags = getTags();
222222
if (tags == null || tags.length() == 0) {

engine/schema/src/com/cloud/storage/DiskOfferingVO.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ public void setUniqueName(String name) {
386386
}
387387

388388
@Override
389-
@Transient
389+
// @Transient
390390
public String[] getTagsArray() {
391391
String tags = getTags();
392392
if (tags == null || tags.isEmpty()) {
@@ -396,7 +396,7 @@ public String[] getTagsArray() {
396396
return tags.split(",");
397397
}
398398

399-
@Transient
399+
// @Transient
400400
public boolean containsTag(String... tags) {
401401
if (this.tags == null) {
402402
return false;
@@ -411,7 +411,7 @@ public boolean containsTag(String... tags) {
411411
return true;
412412
}
413413

414-
@Transient
414+
// @Transient
415415
public void setTagsArray(List<String> newTags) {
416416
if (newTags.isEmpty()) {
417417
setTags(null);

0 commit comments

Comments
 (0)