(InputStream is)
| 947 | private void loadProviders(Class<?> cl) { |
| 948 | StreamLoader loader = new StreamLoader() { |
| 949 | @Override |
| 950 | public void load(InputStream is) throws IOException { |
| 951 | loadProvidersFromStream(is); |
| 952 | } |
| 953 | }; |
| 954 | |
| 955 | // load system-wide javamail.providers from the |
nothing calls this directly
no test coverage detected