Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <FindBugsFilter>
  2. <!-- General stuff we don't care about -->
  3. <Match>
  4. <Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2,ICAST_QUESTIONABLE_UNSIGNED_RIGHT_SHIFT"/>
  5. </Match>
  6. <!-- Convenience catch for a variety of exceptions -->
  7. <Match>
  8. <Class name="com.healthmarketscience.jackcess.DataType"/>
  9. <Method name="addNewSqlType"/>
  10. <Bug pattern="REC_CATCH_EXCEPTION"/>
  11. </Match>
  12. <!-- Debug code -->
  13. <Match>
  14. <Class name="com.healthmarketscience.jackcess.impl.ByteUtil"/>
  15. <Method name="toHexFile"/>
  16. <Bug pattern="DM_DEFAULT_ENCODING"/>
  17. </Match>
  18. <!-- Streams kept open on purpose -->
  19. <Match>
  20. <Class name="com.healthmarketscience.jackcess.util.OleBlob$Builder"/>
  21. <Bug pattern="OBL_UNSATISFIED_OBLIGATION"/>
  22. </Match>
  23. <!-- Utility code which uses FileWriter/FileReader -->
  24. <Match>
  25. <Class name="com.healthmarketscience.jackcess.util.ImportUtil"/>
  26. <Method name="importFile"/>
  27. <Bug pattern="DM_DEFAULT_ENCODING"/>
  28. </Match>
  29. <Match>
  30. <Class name="com.healthmarketscience.jackcess.util.ExportUtil"/>
  31. <Method name="exportFile"/>
  32. <Bug pattern="DM_DEFAULT_ENCODING"/>
  33. </Match>
  34. </FindBugsFilter>