Skip to content

Commit 257afa3

Browse files
Perform clean code of ds/org.eclipse.pde.ds.core
1 parent 13640dc commit 257afa3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ds/org.eclipse.pde.ds.core/src/org/eclipse/pde/internal/ds/core/text/DSEntryProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public abstract class DSEntryProperties extends DSObject implements IDSBundleProperties {
2929

3030
private static final long serialVersionUID = 1L;
31-
private int type;
31+
private final int type;
3232

3333
public DSEntryProperties(DSModel model, String elementName, int type) {
3434
super(model, elementName);

ds/org.eclipse.pde.ds.core/src/org/eclipse/pde/internal/ds/core/text/DSSingleProperty.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
public abstract class DSSingleProperty extends DSObject implements IDSSingleProperty {
2323

2424
private static final long serialVersionUID = 1L;
25-
private int type;
25+
private final int type;
2626

2727
public DSSingleProperty(DSModel model, String element, int type) {
2828
super(model, element);

0 commit comments

Comments
 (0)