Kaydet (Commit) 90033c54 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

ScriptEntry fields can be final

Change-Id: I7616641584b7ea8192cf3724d8b7d5b88af39da6
üst 8e4c3379
...@@ -23,13 +23,13 @@ import java.util.Map; ...@@ -23,13 +23,13 @@ import java.util.Map;
public class ScriptEntry implements Cloneable { public class ScriptEntry implements Cloneable {
private String language; private final String language;
private String languagename; private final String languagename;
private String location; private final String location;
private String logicalname; private final String logicalname;
private String description; private final String description;
private Map<String, String> languagedepprops; private final Map<String, String> languagedepprops;
protected ScriptEntry(ScriptEntry entry) { protected ScriptEntry(ScriptEntry entry) {
this.language = entry.language; this.language = entry.language;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment