Skip to content

Commit 2feb5d7

Browse files
[Android]remove unused status newInstance (#32160)
1 parent 1dd67c3 commit 2feb5d7

File tree

1 file changed

+0
-4
lines changed
  • src/controller/java/src/chip/devicecontroller/model

1 file changed

+0
-4
lines changed

src/controller/java/src/chip/devicecontroller/model/Status.java

-4
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ public String toString() {
4747
clusterStatus.isPresent() ? String.valueOf(clusterStatus.get()) : "None");
4848
}
4949

50-
public static Status newInstance(int status, int clusterStatus) {
51-
return new Status(status, Optional.of(clusterStatus));
52-
}
53-
5450
public static Status newInstance(int status) {
5551
return new Status(status, Optional.empty());
5652
}

0 commit comments

Comments
 (0)