aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-08-31 23:39:59 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2014-08-31 23:39:59 +0200
commiteda2470c4d7129afe3ef4a4c579b0c3bab0e37b4 (patch)
tree2b7e6f4d6db5e240b7ce292a137463c788520de6
parente0be0f648ade84a83c7561c0521853447ca8b3da (diff)
parentfb3c754ea84cc38052f6e0eb280ecf42d3437705 (diff)
Merge branch 'master' of https://github.com/open-keychain/openpgp-api-lib
-rw-r--r--src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java b/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java
index 58c62110..4fd4b39a 100644
--- a/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java
+++ b/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 Dominik Schürmann <dominik@dominikschuermann.de>
- * 2013 Flow (http://stackoverflow.com/questions/18212152/transfer-inputstream-to-another-service-across-process-boundaries-with-parcelf)
+ * 2013 Florian Schmaus <flo@geekplace.eu>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -23,6 +23,9 @@ import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
+/**
+ * Partially based on <a href="http://stackoverflow.com/questions/18212152/">Stackoverflow: Transfer InputStream to another Service (across process boundaries)</a>
+ **/
public class ParcelFileDescriptorUtil {
public interface IThreadListener {
@@ -100,4 +103,4 @@ public class ParcelFileDescriptorUtil {
}
}
}
-} \ No newline at end of file
+}