Kaydet (Commit) 08ece8d8 authored tarafından Noel Grandin's avatar Noel Grandin

java: revert part of commit, scripting/ is public API

revert part of my commit
7557f23b
"java: reduce visibility of fields and methods"

Change-Id: I2049a154b60b165d4d2217495935442d6da66e97
üst b7d74366
......@@ -31,7 +31,7 @@ public class ScriptEntry implements Cloneable {
private Map<String, String> languagedepprops;
private ScriptEntry(String language, String languagename,
public ScriptEntry(String language, String languagename,
String location) {
this.language = language;
......@@ -105,7 +105,7 @@ public class ScriptEntry implements Cloneable {
return language;
}
private String getLocation() {
public String getLocation() {
return location;
}
......@@ -120,4 +120,4 @@ public class ScriptEntry implements Cloneable {
"\nLocation = " + location +
"\nLanguaguageProperties = " + languagedepprops;
}
}
\ No newline at end of file
}
......@@ -62,7 +62,7 @@ public class ScriptMetaData extends ScriptEntry {
return (source != null && hasSource) ? source : null;
}
private byte[] getSourceBytes() {
public byte[] getSourceBytes() {
return (source != null && hasSource) ? source.getBytes() : null;
}
......@@ -126,7 +126,7 @@ public class ScriptMetaData extends ScriptEntry {
return result;
}
private String getLocationPlaceHolder() {
public String getLocationPlaceHolder() {
String placeHolder = "Unknown";
String pathToParcel = parent.getPathToParcel();
......
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