package jetbrains.buildServer.eclipse.server;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Map;

import jetbrains.buildServer.serverSide.InvalidProperty;

public class EclipsePropertiesProcessor implements	jetbrains.buildServer.serverSide.PropertiesProcessor {

	public Collection<InvalidProperty> process(Map<String, String> arg0) {
		return new ArrayList<InvalidProperty>();
	}

}