Skip to content

Commit

Permalink
Typo fix 2, remove extra lines
Browse files Browse the repository at this point in the history
  • Loading branch information
absalomedia authored Jan 31, 2020
1 parent 0bcd4ab commit 7952399
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/sass.c
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,6 @@ PHP_METHOD(Sass, setMapPath)
RETURN_NULL();
}


PHP_METHOD(Sass, getMapRoot)
{
zval *this = getThis();
Expand All @@ -551,7 +550,7 @@ PHP_METHOD(Sass, getMapRoot)
sass_object *obj = Z_SASS_P(this);
if (obj->map_root == NULL) RETURN_STRING("");
RETURN_STRING(obj->map_root);
}

PHP_METHOD(Sass, setMapRoot)
{
Expand All @@ -572,8 +571,6 @@ PHP_METHOD(Sass, setMapRoot)
}




PHP_METHOD(Sass, getPrecision)
{
zval *this = getThis();
Expand Down Expand Up @@ -632,7 +629,6 @@ PHP_METHOD(Sass, setEmbed)
RETURN_NULL();
}


PHP_METHOD(Sass, getComments)
{
zval *this = getThis();
Expand Down Expand Up @@ -663,7 +659,6 @@ PHP_METHOD(Sass, setComments)
RETURN_NULL();
}


PHP_METHOD(Sass, getIndent)
{
zval *this = getThis();
Expand Down Expand Up @@ -694,8 +689,6 @@ PHP_METHOD(Sass, setIndent)
RETURN_NULL();
}



PHP_METHOD(Sass, setImporter)
{
zval *importer;
Expand Down Expand Up @@ -771,7 +764,6 @@ PHP_METHOD(Sass, setFunctions)
RETURN_TRUE;
}


PHP_METHOD(Sass, getLibraryVersion)
{
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "", NULL) == FAILURE) {
Expand Down

0 comments on commit 7952399

Please sign in to comment.