Remove unnecessary semicolons

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808511 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2017-09-16 08:23:15 +00:00
parent f27cb3354d
commit 0ce7fff0be
7 changed files with 8 additions and 8 deletions

View File

@ -101,7 +101,7 @@ public enum FontGroup {
UCS_RANGES.put(0xFB1D, new Range(0xFB4F, COMPLEX_SCRIPT));
UCS_RANGES.put(0xFE50, new Range(0xFE6F, LATIN));
// All others EAST_ASIAN
};
}
/**

View File

@ -232,7 +232,7 @@ public class Section {
} catch (RuntimeException e) {
LOG.log(POILogger.INFO, "Dictionary fallback failed - ignoring property");
}
};
}
} else {
setProperty(new Property(id, leis, pLen, codepage));
}

View File

@ -37,7 +37,7 @@ import org.apache.poi.sl.draw.binding.CTGeomGuide;
*/
public class Guide implements Formula {
enum Op {
muldiv,addsub,adddiv,ifelse,val,abs,sqrt,max,min,at2,sin,cos,tan,cat2,sat2,pin,mod;
muldiv,addsub,adddiv,ifelse,val,abs,sqrt,max,min,at2,sin,cos,tan,cat2,sat2,pin,mod
}
private final String name, fmla;

View File

@ -38,7 +38,7 @@ public interface PaintStyle {
/** darken the paint/filling */
DARKEN,
/** darken (... a bit less) the paint/filling */
DARKEN_LESS;
DARKEN_LESS
}
interface SolidPaint extends PaintStyle {

View File

@ -237,7 +237,7 @@ public interface Row extends Iterable<Cell> {
public enum MissingCellPolicy {
RETURN_NULL_AND_BLANK,
RETURN_BLANK_AS_NULL,
CREATE_NULL_AS_BLANK;
CREATE_NULL_AS_BLANK
}
/**

View File

@ -34,7 +34,7 @@ public final class TestPAPBinTable {
@Test
public void testObIs() throws IOException {
// shall not fail with assertions on
HWPFTestDataSamples.openSampleFile( "ob_is.doc" ).close();;
HWPFTestDataSamples.openSampleFile( "ob_is.doc" ).close();
}
@Test

View File

@ -544,8 +544,8 @@ public final class TestMetaDataIPI {
/* Read the document summary information. */
DirectoryEntry dir = poifs.getRoot();
dsi = (DocumentSummaryInformation)PropertySetFactory.create(dir, DocumentSummaryInformation.DEFAULT_STREAM_NAME);;
si = (SummaryInformation)PropertySetFactory.create(dir, SummaryInformation.DEFAULT_STREAM_NAME);;
dsi = (DocumentSummaryInformation)PropertySetFactory.create(dir, DocumentSummaryInformation.DEFAULT_STREAM_NAME);
si = (SummaryInformation)PropertySetFactory.create(dir, SummaryInformation.DEFAULT_STREAM_NAME);
}
/**