Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pg/src/main/java/org/bouncycastle/openpgp/StreamGenerator.java')
-rw-r--r--pg/src/main/java/org/bouncycastle/openpgp/StreamGenerator.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/pg/src/main/java/org/bouncycastle/openpgp/StreamGenerator.java b/pg/src/main/java/org/bouncycastle/openpgp/StreamGenerator.java
deleted file mode 100644
index 75e92767..00000000
--- a/pg/src/main/java/org/bouncycastle/openpgp/StreamGenerator.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package org.bouncycastle.openpgp;
-
-import java.io.IOException;
-
-/**
- * Callback interface for generators that produce a stream to be informed when the stream has been
- * closed by the client.
- */
-interface StreamGenerator
-{
- /**
- * Signal that the stream has been closed.
- */
- void close()
- throws IOException;
-}