Ignore:
Timestamp:
2014-10-04T17:28:45+02:00 (10 years ago)
Author:
donvip
Message:

[josm_plugins] fix various compilation warnings

Location:
applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/GraphicsProcessor.java

    r25349 r30701  
    117117                                //fill all
    118118                        }
    119                         else
    120                         {
     119                        else {
    121120                                //Unexpected operation
    122                                 int a = 10;
    123                                 a++;
    124121                        }
    125122
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/PdfBoxParser.java

    r25349 r30701  
    2222        }
    2323
    24         @SuppressWarnings("unchecked")
    2524        public void parse(File file, int maxPaths, ProgressMonitor monitor) throws Exception
    2625        {
     
    3332                }
    3433
    35                 List allPages = document.getDocumentCatalog().getAllPages();
     34                List<?> allPages = document.getDocumentCatalog().getAllPages();
    3635
    3736                if (allPages.size() != 1) {
Note: See TracChangeset for help on using the changeset viewer.