From 5e2c1fb4cdc30936ed7bfbbdb7be321baa770b80 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 7 Jul 2022 12:27:02 +0200 Subject: [PATCH] :tada: Add missing predicate on util/bytes ns --- backend/src/app/util/bytes.clj | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/src/app/util/bytes.clj b/backend/src/app/util/bytes.clj index 1a36151abd..50a73d3350 100644 --- a/backend/src/app/util/bytes.clj +++ b/backend/src/app/util/bytes.clj @@ -36,6 +36,10 @@ [s] (instance? OutputStream s)) +(defn data-input-stream? + [s] + (instance? DataInputStream s)) + (defn data-output-stream? [s] (instance? DataOutputStream s))