core: get rid of unused opts warning

This commit is contained in:
Marcel Otto 2016-12-09 14:50:37 +01:00
parent 9764a01753
commit e82669248f

View file

@ -18,7 +18,7 @@ defmodule RDF.NTriples.Reader do
use RDF.Reader
def read_string(content, opts \\ []) do
def read_string(content, _opts \\ []) do
with {:ok, tokens, _} <- tokenize(content),
{:ok, ast} <- parse(tokens) do
{:ok, build_graph(ast)}