Fork me on GitHub

CPD Results

The following document contains the results of PMD's CPD 5.0.2.

Duplications

File Line
org\owasp\dependencycheck\data\lucene\AbstractIndex.java 99
org\owasp\dependencycheck\data\lucene\AbstractIndex.java 119
                indexWriter.commit();
            } catch (CorruptIndexException ex) {
                final String msg = "Unable to update database, there is a corrupt index.";
                Logger.getLogger(AbstractIndex.class.getName()).log(Level.SEVERE, msg);
                Logger.getLogger(AbstractIndex.class.getName()).log(Level.FINE, null, ex);
            } catch (IOException ex) {
                final String msg = "Unable to update database due to an IO error.";
                Logger.getLogger(AbstractIndex.class.getName()).log(Level.SEVERE, msg);
                Logger.getLogger(AbstractIndex.class.getName()).log(Level.FINE, null, ex);
            }