FindBugs fix

- fixed "Should be a static inner class"
- see http://findbugs.sourceforge.net/bugDescriptions.html#SIC_INNER_SHOULD_BE_STATIC


git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1568178 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2014-02-14 01:00:45 +00:00
parent 3ceb93b23d
commit 92a488a28b
7 changed files with 13 additions and 11 deletions

View File

@ -294,7 +294,7 @@ public class Section
* <p>Represents an entry in the property list and holds a property's ID and
* its offset from the section's beginning.</p>
*/
class PropertyListEntry implements Comparable<PropertyListEntry>
static class PropertyListEntry implements Comparable<PropertyListEntry>
{
int id;
int offset;

View File

@ -108,7 +108,7 @@ public class CellWalk {
*
* @author Roman Kashitsyn
*/
private class SimpleCellWalkContext implements CellWalkContext {
private static class SimpleCellWalkContext implements CellWalkContext {
public long ordinalNumber = 0;
public int rowNumber = 0;
public int colNumber = 0;

View File

@ -167,7 +167,7 @@ public class POIXMLProperties {
/**
* The core document properties
*/
public class CoreProperties {
public static class CoreProperties {
private PackagePropertiesPart part;
private CoreProperties(PackagePropertiesPart part) {
this.part = part;
@ -273,7 +273,7 @@ public class POIXMLProperties {
/**
* Extended document properties
*/
public class ExtendedProperties {
public static class ExtendedProperties {
private org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.PropertiesDocument props;
private ExtendedProperties(org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.PropertiesDocument props) {
this.props = props;
@ -287,7 +287,7 @@ public class POIXMLProperties {
/**
* Custom document properties
*/
public class CustomProperties {
public static class CustomProperties {
/**
* Each custom property element contains an fmtid attribute
* with the same GUID value ({D5CDD505-2E9C-101B-9397-08002B2CF9AE}).

View File

@ -66,6 +66,7 @@ public class ZipInputStreamZipEntrySource implements ZipEntrySource {
}
public InputStream getInputStream(ZipEntry zipEntry) {
assert (zipEntry instanceof FakeZipEntry);
FakeZipEntry entry = (FakeZipEntry)zipEntry;
return entry.getInputStream();
}

View File

@ -187,7 +187,7 @@ public final class ChunkFactory {
* The definition of a Command, which a chunk may hold.
* The Command holds the value, this describes it.
*/
public class CommandDefinition {
public static class CommandDefinition {
private int type;
private int offset;
private String name;

View File

@ -17,10 +17,11 @@
package org.apache.poi.hslf.record;
import org.apache.poi.util.LittleEndian;
import java.io.IOException;
import java.io.OutputStream;
import org.apache.poi.util.LittleEndian;
/**
* A Slide Atom (type 1007). Holds information on the parent Slide, what
* Master Slide it uses, what Notes is attached to it, that sort of thing.
@ -173,7 +174,7 @@ public final class SlideAtom extends RecordAtom
* usual record header. Since it's a fixed size and tied to
* the SlideAtom, we'll hold it here.)
*/
public class SSlideLayoutAtom {
public static class SSlideLayoutAtom {
// The different kinds of geometry
public static final int TITLE_SLIDE = 0;
public static final int TITLE_BODY_SLIDE = 1;

View File

@ -17,12 +17,12 @@
package org.apache.poi.hslf.record;
import org.apache.poi.util.LittleEndian;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Vector;
import org.apache.poi.util.LittleEndian;
/**
* These are tricky beasts. They contain the text of potentially
* many (normal) slides. They are made up of several sets of
@ -181,7 +181,7 @@ public final class SlideListWithText extends RecordContainer {
* includes sets of TextHeaderAtom and TextBytesAtom/TextCharsAtom,
* along with some others.
*/
public class SlideAtomsSet {
public static class SlideAtomsSet {
private SlidePersistAtom slidePersistAtom;
private Record[] slideRecords;