You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: features/command/src/main/java/org/apache/karaf/features/command/FeatureExport.java
+12-22Lines changed: 12 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -17,10 +17,9 @@
17
17
packageorg.apache.karaf.features.command;
18
18
19
19
importjava.io.File;
20
-
importjava.io.FileInputStream;
21
20
importjava.io.FileNotFoundException;
22
-
importjava.io.FileOutputStream;
23
21
importjava.io.IOException;
22
+
importjava.nio.file.Files;
24
23
25
24
importorg.apache.karaf.features.BundleInfo;
26
25
importorg.apache.karaf.features.Dependency;
@@ -42,7 +41,6 @@
42
41
* file system. This is useful for several use cases, such as in the event you
43
42
* need to deploy the functionality offered by a particular feature to an OBR
44
43
* repository.
45
-
*
46
44
*/
47
45
@Service
48
46
@Command(scope = "feature", name = "export-bundles", description = "Export all of the bundles that make up a specified feature to a directory on the file system.")
0 commit comments