(MediaEntry e)
| 440 | } |
| 441 | |
| 442 | public MediaEntry findLocalEntry(MediaEntry e) { |
| 443 | for (MediaEntry entry : getLocalLibrary().mediaLookup.values()) { |
| 444 | if (entry.source.equals(e.source)) |
| 445 | return entry; |
| 446 | } |
| 447 | return null; |
| 448 | } |
| 449 | |
| 450 | private File getTempDirectory() { |
| 451 | String temp = System.getProperty("java.io.tmpdir"); |
no test coverage detected