mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00
Return empty list instead of null
Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
This commit is contained in:
parent
891d705aeb
commit
4bdb317e10
1 changed files with 3 additions and 3 deletions
|
@ -7,15 +7,15 @@
|
|||
*******************************************************************************/
|
||||
package org.eclipse.xtext.mwe;
|
||||
|
||||
import java.util.Collections;
|
||||
|
||||
/**
|
||||
* @author svenefftinge - Initial contribution and API
|
||||
*/
|
||||
public class EquinoxClasspathEntriesProvider implements IClasspathEntriesProvider {
|
||||
|
||||
@Override
|
||||
public Iterable<String> getAllPathes(ClassLoader classloader) {
|
||||
|
||||
return null;
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue