* Returns the configuration file for the specified style, if the file does not exist null is returned.
*
* @deprecated As of GeoServer 2.6, replaced by {@link #config(StyleInfo, String...)}
*/
public File findStyleFile(StyleInfo s) throws IOException {
Resource resource = config(s);
return Resources.file(resource);
}