(File dir, String filename)
| 842 | } |
| 843 | FilenameFilter filter = new FilenameFilter() { |
| 844 | @Override |
| 845 | public boolean accept(File dir, String filename) { |
| 846 | return (filename.startsWith("lib" + libName + ".so") |
| 847 | || (filename.startsWith(libName + ".so") |
| 848 | && libName.startsWith("lib"))) |
| 849 | && isVersionedName(filename); |
| 850 | } |
| 851 | }; |
| 852 | |
| 853 | Collection<File> matches = new LinkedList<>(); |
nothing calls this directly
no test coverage detected