blob: 33710da514bbbcef04042363345fe254688bea14 [file] [log] [blame]
// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package j$.util;
public class DoubleSummaryStatistics {
public long getCount() {
return 0L;
}
public double getSum() {
return 0.0;
}
public double getMin() {
return 0.0;
}
public double getMax() {
return 0.0;
}
}