no force on Memory Request for these parser

pull/1/head
sixcooler 14 years ago
parent 6567244f2a
commit f280e339a8

@ -70,7 +70,7 @@ public class pdfParser extends AbstractParser implements Parser {
public Document[] parse(final MultiProtocolURI location, final String mimeType, final String charset, final InputStream source) throws Parser.Failure, InterruptedException {
// check memory for parser
if (!MemoryControl.request(200 * 1024 * 1024, true))
if (!MemoryControl.request(200 * 1024 * 1024, false))
throw new Parser.Failure("Not enough Memory available for pdf parser: " + MemoryControl.available(), location);
// create a pdf parser

@ -63,7 +63,7 @@ public class zipParser extends AbstractParser implements Parser {
final String charset, final InputStream source)
throws Parser.Failure, InterruptedException {
// check memory for parser
if (!MemoryControl.request(200 * 1024 * 1024, true))
if (!MemoryControl.request(200 * 1024 * 1024, false))
throw new Parser.Failure("Not enough Memory available for zip parser: " + MemoryControl.available(), url);
Document[] docs = null;

Loading…
Cancel
Save