Permalink
Browse files
Another instance of a for in that wasn't needed
- Loading branch information...
Showing
with
1 addition
and
1 deletion.
-
+1
−1
lib/xrds.js
|
@@ -37,7 +37,7 @@ exports.parse = function(data) |
|
|
return services;
|
|
|
}
|
|
|
|
|
|
- for(var s in serviceMatches)
|
|
|
+ for(var s = 0, len = serviceMatches.length; s < len; ++i)
|
|
|
{
|
|
|
var service = serviceMatches[s];
|
|
|
var svcs = [];
|
|
|
0 comments on commit
621ea6c