File tree 1 file changed +7
-2
lines changed
tools/cldr-apps/src/main/java/org/unicode/cldr/web/api
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -328,9 +328,14 @@ public void run() {
328
328
}
329
329
}
330
330
331
+ private static final boolean ENABLE_ALL_LOCALE_SUMMARY = false ;
332
+
331
333
private void makeAutoPriorityItemsSnapshot () throws IOException , JSONException {
332
- final SurveyMain .Phase phase = SurveyMain .phase ();
333
- final boolean summarizeAllLocales = (phase == SurveyMain .Phase .VETTING || phase == SurveyMain .Phase .VETTING_CLOSED );
334
+ boolean summarizeAllLocales = false ;
335
+ if (ENABLE_ALL_LOCALE_SUMMARY ) {
336
+ final SurveyMain .Phase phase = SurveyMain .phase ();
337
+ summarizeAllLocales = (phase == SurveyMain .Phase .VETTING || phase == SurveyMain .Phase .VETTING_CLOSED );
338
+ }
334
339
final VettingViewerQueue vvq = VettingViewerQueue .getInstance ();
335
340
vvq .setSummarizeAllLocales (summarizeAllLocales );
336
341
final QueueMemberId qmi = new QueueMemberId ();
You can’t perform that action at this time.
0 commit comments