(JLabel changeIcon, String originIconStr)
| 1222 | SwingWorker<SearchResults, Void> worker = new SwingWorker<SearchResults, Void>() { |
| 1223 | |
| 1224 | private void fontSet(JLabel changeIcon, String originIconStr) { |
| 1225 | changeIcon.setText(originIconStr); |
| 1226 | changeIcon.setForeground(new Color(48, 49, 52)); |
| 1227 | } |
| 1228 | |
| 1229 | @Override |
| 1230 | protected SearchResults doInBackground() throws Exception { |
no outgoing calls
no test coverage detected