Skip to content

Commit 6c70655

Browse files
authored
Merge pull request #113 from satyasyahputra/fix-warnings
Fix warnings
2 parents 0005f65 + 30cb718 commit 6c70655

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/xlsxir.ex

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ defmodule Xlsxir do
44
use Application
55

66
def start(_type, _args) do
7-
import Supervisor.Spec
87

98
children = [
10-
worker(Xlsxir.StateManager, [])
9+
%{id: Xlsxir.StateManager, start: {Xlsxir.StateManager, :start_link, []}, type: :worker}
1110
]
1211

1312
opts = [strategy: :one_for_one, name: __MODULE__]

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule Xlsxir.Mixfile do
2020
def application do
2121
[
2222
mod: {Xlsxir, []},
23-
extra_applications: [:logger]
23+
extra_applications: [:logger, :crypto]
2424
]
2525
end
2626

0 commit comments

Comments
 (0)