Skip to content

Commit

Permalink
1.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
noear committed Jul 30, 2022
1 parent bf57e7a commit a2ed7e1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions _solon_extend/solon.hotplug/src/test/java/demo/App.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package demo;

import org.noear.solon.hotplug.PluginInfo;
import org.noear.solon.hotplug.PluginManager;

import java.util.List;
import java.util.stream.Collectors;

/**
* @author noear 2022/7/31 created
*/
public class App {
public static void main(String[] args){
List<PluginInfo> list = PluginManager.getPlugins().stream().filter(p->p.getStarted()).collect(Collectors.toList());
}
}

0 comments on commit a2ed7e1

Please sign in to comment.