Skip to content

Commit 2175352

Browse files
author
Tim Berners-Lee
committed
standard RDFXMLPane.js
1 parent 1fa30b3 commit 2175352

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

RDFXMLPane.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = {
1717

1818
var n = UI.store.statementsMatching(
1919
undefined, undefined, undefined, subject).length
20-
if (n == 0) return null
20+
if (n === 0) return null
2121
return 'As RDF/XML (' + n + ')'
2222
},
2323

@@ -28,7 +28,7 @@ module.exports = {
2828
// Because of smushing etc, this will not be a copy of the original source
2929
// We could instead either fetch and re-parse the source,
3030
// or we could keep all the pre-smushed triples.
31-
var sts = kb.statementsMatching(undefined, undefined, undefined, subject); // @@ slow with current store!
31+
var sts = kb.statementsMatching(undefined, undefined, undefined, subject) // @@ slow with current store!
3232
/*
3333
var kludge = kb.formula([]) // No features
3434
for (var i=0; i< sts.length; i++) {

0 commit comments

Comments
 (0)