You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Andy Han (JIRA)" <ji...@apache.org> on 2012/06/14 09:18:42 UTC

[jira] [Updated] (PDFBOX-1339) PDFMergerUtility addSources function does not work

     [ https://issues.apache.org/jira/browse/PDFBOX-1339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andy Han updated PDFBOX-1339:
-----------------------------

    Description: 
public void addSources(List<InputStream> sourcesList)
{
    this.sources.addAll(sources); 
}

it should be  "this.sources.addAll(sourcesList);" 

  was:
    public void addSources(List<InputStream> sourcesList)
    {
        this.sources.addAll(sources);
    }

should be  "this.sources.addAll(sourcesList);" 

    
> PDFMergerUtility addSources function does not work
> --------------------------------------------------
>
>                 Key: PDFBOX-1339
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-1339
>             Project: PDFBox
>          Issue Type: Bug
>          Components: Utilities
>    Affects Versions: 1.7.0
>         Environment: Windows 7, Java 1.6
>            Reporter: Andy Han
>            Priority: Critical
>
> public void addSources(List<InputStream> sourcesList)
> {
>     this.sources.addAll(sources); 
> }
> it should be  "this.sources.addAll(sourcesList);" 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira