backend: don't be inheritable explictly

This commit is contained in:
Hylke Bons 2011-05-25 20:07:13 +01:00
parent 91925b8827
commit d5ec6472fd

View file

@ -20,8 +20,6 @@ using System.IO;
namespace SparkleLib {
// An inheritable class that contains information
// about a backend
public class SparkleBackend {
public static SparkleBackend DefaultBackend;
@ -43,14 +41,14 @@ namespace SparkleLib {
}
virtual public bool IsPresent {
public bool IsPresent {
get {
return (Path != null);
}
}
virtual public bool IsUsablePath (string path)
public bool IsUsablePath (string path)
{
return (path.Length > 0);
}