Bug 327846 - Method names conflicting with Java keywords should have underscore prepended, not appended. Expand list of Java keywords. General cleanup. r=bsmedberg. xulrunner only

git-svn-id: svn://10.0.0.236/trunk@193284 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pedemont%us.ibm.com
2006-03-30 22:31:58 +00:00
parent 4d86fcae86
commit 0679c93f31
9 changed files with 193 additions and 123 deletions

View File

@@ -76,7 +76,7 @@ public interface IAppFileLocProvider {
*
* @return the file represented by the property
*/
public File getFile(String prop, boolean[] persistent);
File getFile(String prop, boolean[] persistent);
/**
* Directory Service calls this when it gets a request for
@@ -86,7 +86,7 @@ public interface IAppFileLocProvider {
*
* @return an array of file locations
*/
public File[] getFiles(String prop);
File[] getFiles(String prop);
}