Skip to content

Commit c84f31f

Browse files
committed
fix not passed variables
1 parent adf622f commit c84f31f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/woql.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ WOQL.add_property = function(propid, type, graph) {
852852
* @return {object} WOQLQuery
853853
*/
854854
WOQL.delete_class = function(classid, graph, cvar) {
855-
return new WOQLQuery().delete_class(classid, graph)
855+
return new WOQLQuery().delete_class(classid, graph,cvar)
856856
}
857857

858858
/**
@@ -862,7 +862,7 @@ WOQL.delete_class = function(classid, graph, cvar) {
862862
* @return {object} WOQLQuery
863863
*/
864864
WOQL.delete_property = function(propid, graph,cvar) {
865-
return new WOQLQuery().delete_property(propid, graph)
865+
return new WOQLQuery().delete_property(propid, graph,cvar)
866866
}
867867

868868
/**

0 commit comments

Comments
 (0)