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

prepare release

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