diff options
author | netconomy <netconomy@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c> | 2007-09-06 16:49:15 +0000 |
---|---|---|
committer | netconomy <netconomy@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c> | 2007-09-06 16:49:15 +0000 |
commit | e02e02f86e275544c5919e1c867d1843e06181cf (patch) | |
tree | 41996cf63b8003f12af130648a1f248fdadc647c /src/main/java/at/gv | |
parent | 85e574618b04a34d5e41444d17ce7e6d5a93cc5b (diff) | |
download | pdf-as-3-e02e02f86e275544c5919e1c867d1843e06181cf.tar.gz pdf-as-3-e02e02f86e275544c5919e1c867d1843e06181cf.tar.bz2 pdf-as-3-e02e02f86e275544c5919e1c867d1843e06181cf.zip |
Streaming Rückbau
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@211 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c
Diffstat (limited to 'src/main/java/at/gv')
-rw-r--r-- | src/main/java/at/gv/egiz/pdfas/web/helper/TempDirHelper.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/gv/egiz/pdfas/web/helper/TempDirHelper.java b/src/main/java/at/gv/egiz/pdfas/web/helper/TempDirHelper.java index 23c01fd..c16b96f 100644 --- a/src/main/java/at/gv/egiz/pdfas/web/helper/TempDirHelper.java +++ b/src/main/java/at/gv/egiz/pdfas/web/helper/TempDirHelper.java @@ -120,7 +120,8 @@ public class TempDirHelper */
public static boolean isReasonableToStore(int textLength)
{
- return textLength >= 10000;
+ return false;
+// return textLength >= 10000;
}
public static PdfDataSource placePdfIntoTempDir(InputStream pdfInput, String fileNameSuffix) throws IOException
|