lib/watir/matches.rb in commonwatir-1.6.2 vs lib/watir/matches.rb in commonwatir-1.6.5
- old
+ new
@@ -1,17 +1,17 @@
-class String
- def matches(x)
- return self == x
- end
-end
-
-class Regexp
- def matches(x)
- return self.match(x)
- end
-end
-
-class Integer
- def matches(x)
- return self == x
- end
-end
+class String
+ def matches(x)
+ return self == x
+ end
+end
+
+class Regexp
+ def matches(x)
+ return self.match(x)
+ end
+end
+
+class Integer
+ def matches(x)
+ return self == x
+ end
+end