Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DependencyConstraints {
// These version numbers are consumed by :geode-modules-assembly:distAppServer filtering
// Some of these are referenced below as well
deps.put("antlr.version", "2.7.7")
deps.put("commons-io.version", "2.11.0")
deps.put("commons-io.version", "2.15.1")
deps.put("commons-lang3.version", "3.12.0")
deps.put("commons-validator.version", "1.7")
deps.put("fastutil.version", "8.5.8")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package org.apache.geode.logging.log4j.internal.impl;

import static org.apache.commons.io.output.NullOutputStream.NULL_OUTPUT_STREAM;
import static org.apache.commons.io.output.NullOutputStream.INSTANCE;

import java.io.PrintStream;

Expand All @@ -27,7 +27,7 @@
class NullLogWriter extends ManagerLogWriter {

NullLogWriter() {
this(LogWriterLevel.NONE.intLevel(), new PrintStream(NULL_OUTPUT_STREAM), true);
this(LogWriterLevel.NONE.intLevel(), new PrintStream(INSTANCE), true);
}

NullLogWriter(final int level, final PrintStream printStream, final boolean loner) {
Expand Down
Loading