@@ -127,13 +127,13 @@ public void openFolder(File file) throws Exception {
127
127
// Some of these are supposedly constants in com.apple.eio.FileManager,
128
128
// however they don't seem to link properly from Eclipse.
129
129
130
- static final int kDocumentsFolderType =
130
+ private static final int kDocumentsFolderType =
131
131
('d' << 24 ) | ('o' << 16 ) | ('c' << 8 ) | 's' ;
132
132
//static final int kPreferencesFolderType =
133
133
// ('p' << 24) | ('r' << 16) | ('e' << 8) | 'f';
134
- static final int kDomainLibraryFolderType =
134
+ private static final int kDomainLibraryFolderType =
135
135
('d' << 24 ) | ('l' << 16 ) | ('i' << 8 ) | 'b' ;
136
- static final short kUserDomain = -32763 ;
136
+ private static final short kUserDomain = -32763 ;
137
137
138
138
139
139
// apple java extensions documentation
@@ -150,12 +150,12 @@ public void openFolder(File file) throws Exception {
150
150
// /Versions/Current/Frameworks/CarbonCore.framework/Headers/
151
151
152
152
153
- protected String getLibraryFolder () throws FileNotFoundException {
153
+ private String getLibraryFolder () throws FileNotFoundException {
154
154
return FileManager .findFolder (kUserDomain , kDomainLibraryFolderType );
155
155
}
156
156
157
157
158
- protected String getDocumentsFolder () throws FileNotFoundException {
158
+ private String getDocumentsFolder () throws FileNotFoundException {
159
159
return FileManager .findFolder (kUserDomain , kDocumentsFolderType );
160
160
}
161
161
@@ -168,7 +168,7 @@ public String getName() {
168
168
public Map <String , Object > resolveDeviceAttachedTo (String serial , Map <String , TargetPackage > packages , String devicesListOutput ) {
169
169
assert packages != null ;
170
170
if (devicesListOutput == null ) {
171
- return super .resolveDeviceAttachedTo (serial , packages , devicesListOutput );
171
+ return super .resolveDeviceAttachedTo (serial , packages , null );
172
172
}
173
173
174
174
try {
0 commit comments