We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c4af6b commit a007c68Copy full SHA for a007c68
sdk/nbi/stub/ext/components/products/helloworld/src/org/mycompany/ConfigurationLogic.java
@@ -213,7 +213,8 @@ public void install(Progress progress) throws InstallationException {
213
}
214
private static void setExecutableContents(File parent, String path) {
215
File binDir = new File(parent, path);
216
- for (File file : binDir.listFiles()) {
+ File[] fileList = binDir.listFiles();
217
+ for (File file : fileList) {
218
try {
219
file.setExecutable(true, false);
220
} catch (Exception ex) {
0 commit comments