core: get rid of unused opts warning
This commit is contained in:
parent
9764a01753
commit
e82669248f
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ defmodule RDF.NTriples.Reader do
|
||||||
|
|
||||||
use RDF.Reader
|
use RDF.Reader
|
||||||
|
|
||||||
def read_string(content, opts \\ []) do
|
def read_string(content, _opts \\ []) do
|
||||||
with {:ok, tokens, _} <- tokenize(content),
|
with {:ok, tokens, _} <- tokenize(content),
|
||||||
{:ok, ast} <- parse(tokens) do
|
{:ok, ast} <- parse(tokens) do
|
||||||
{:ok, build_graph(ast)}
|
{:ok, build_graph(ast)}
|
||||||
|
|
Loading…
Reference in a new issue