fix findbugs issues
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748080 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9d58a47e0c
commit
55b675a384
@ -106,7 +106,7 @@ public class EscherComplexProperty extends EscherProperty {
|
||||
if (this == o) {
|
||||
return true;
|
||||
}
|
||||
if (!(o instanceof EscherComplexProperty)) {
|
||||
if (o == null || !(o instanceof EscherComplexProperty)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -92,7 +92,9 @@ public class RecordGenerator {
|
||||
// Generate record
|
||||
String destinationPath = destSrcPathDir + "/" + packageName;
|
||||
File destinationPathFile = new File(destinationPath);
|
||||
destinationPathFile.mkdirs();
|
||||
if (destinationPathFile.mkdirs()) {
|
||||
System.out.println("Created destination directory: " + destinationPath);
|
||||
}
|
||||
String destinationFilepath = destinationPath + "/" + recordName + suffix + ".java";
|
||||
transform(file, new File(destinationFilepath),
|
||||
new File(recordStyleDir + "/" + extendstg.toLowerCase(Locale.ROOT) + ".xsl"));
|
||||
@ -101,7 +103,9 @@ public class RecordGenerator {
|
||||
// Generate test (if not already generated)
|
||||
destinationPath = testSrcPathDir + "/" + packageName;
|
||||
destinationPathFile = new File(destinationPath);
|
||||
destinationPathFile.mkdirs();
|
||||
if (destinationPathFile.mkdirs()) {
|
||||
System.out.println("Created destination directory: " + destinationPath);
|
||||
}
|
||||
destinationFilepath = destinationPath + "/Test" + recordName + suffix + ".java";
|
||||
if (new File(destinationFilepath).exists() == false) {
|
||||
String temp = (recordStyleDir + "/" + extendstg.toLowerCase(Locale.ROOT) + "_test.xsl");
|
||||
|
@ -24,6 +24,9 @@ class Decimal
|
||||
{
|
||||
static final int SIZE = 16;
|
||||
|
||||
/**
|
||||
* Findbugs: UNR_UNREAD_FIELD
|
||||
*/
|
||||
private short field_1_wReserved;
|
||||
private byte field_2_scale;
|
||||
private byte field_3_sign;
|
||||
|
@ -80,6 +80,10 @@
|
||||
<Class name="org.apache.poi.xssf.model.IndexedUDFFinder"/>
|
||||
<Bug code="Nm" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.poi.hpsf.Decimal"/>
|
||||
<Bug pattern="URF_UNREAD_FIELD" />
|
||||
</Match>
|
||||
|
||||
<!-- named this way on purpose -->
|
||||
<Match>
|
||||
|
Loading…
Reference in New Issue
Block a user