Skip to content
This repository was archived by the owner on Nov 10, 2023. It is now read-only.

Commit 89425fe

Browse files
fix buck1 build
Summary: I broke it in D37599350, this diff should fix it. Reviewed By: ndmitchell fbshipit-source-id: 8561087c278c1affa371cdc92ef4d3567f71466c
1 parent e578f0a commit 89425fe

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

test/com/facebook/buck/remoteexecution/event/listener/TestRemoteExecutionStatsProvider.java

+55
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,26 @@ public int getCasDownloads() {
5151
return casDownloads;
5252
}
5353

54+
@Override
55+
public int getCasSmallDownloads() {
56+
return 0;
57+
}
58+
59+
@Override
60+
public int getCasLargeDownloads() {
61+
return 0;
62+
}
63+
64+
@Override
65+
public long getCasSmallDownloadSizeBytes() {
66+
return 0;
67+
}
68+
69+
@Override
70+
public long getCasLargeDownloadSizeBytes() {
71+
return 0;
72+
}
73+
5474
@Override
5575
public long getCasDownloadSizeBytes() {
5676
return casDownladedBytes;
@@ -61,11 +81,46 @@ public int getCasUploads() {
6181
return 0;
6282
}
6383

84+
@Override
85+
public int getCasSmallUploads() {
86+
return 0;
87+
}
88+
89+
@Override
90+
public int getCasLargeUploads() {
91+
return 0;
92+
}
93+
94+
@Override
95+
public long getCasSmallUploadSizeBytes() {
96+
return 0;
97+
}
98+
99+
@Override
100+
public long getCasLargeUploadSizeBytes() {
101+
return 0;
102+
}
103+
64104
@Override
65105
public long getCasUploadSizeBytes() {
66106
return 0;
67107
}
68108

109+
@Override
110+
public long getCasFindMissingCount() {
111+
return 0;
112+
}
113+
114+
@Override
115+
public long getCasFindMissingSmallCount() {
116+
return 0;
117+
}
118+
119+
@Override
120+
public long getCasFindMissingLargeCount() {
121+
return 0;
122+
}
123+
69124
@Override
70125
public int getTotalRulesBuilt() {
71126
return 0;

0 commit comments

Comments
 (0)