提交 ac659dd7 authored 作者: Thomas Mueller's avatar Thomas Mueller

prepare release

上级 fd222279
......@@ -26,7 +26,7 @@ call build -quiet installer mavenDeployCentral
rem call build -quiet compile benchmark
rem == Copy the benchmark results and update the performance page and diagram
call java16 >nul 2>nul
call java15 >nul 2>nul
call build -quiet switchSource
ren ..\h2web h2web-%today%
......
......@@ -83,7 +83,7 @@ public class SoftHashMap extends AbstractMap {
* A soft reference that has a hard reference to the key.
*/
private static class SoftValue extends SoftReference {
private final Object key;
final Object key;
public SoftValue(Object ref, ReferenceQueue q, Object key) {
super(ref, q);
......
......@@ -85,8 +85,12 @@ public class OutputCatcher {
*/
static class DualOutputStream extends FilterOutputStream {
/**
* The original print stream.
*/
final PrintStream print;
private final HtmlOutputStream out;
private final PrintStream print;
private final boolean error;
DualOutputStream(HtmlOutputStream out, PrintStream print, boolean error) {
......
......@@ -50,7 +50,7 @@ public class BuildBase {
private static final long serialVersionUID = 1L;
private StringList(String... args) {
StringList(String... args) {
super();
addAll(Arrays.asList(args));
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论