kazu-yamamoto / logger

A fast logging system for Haskell
159 stars 68 forks source link

Remove redundant `$!` and unused language pragma. #73

Closed markus1189 closed 8 years ago

markus1189 commented 8 years ago

Hi Michael :)

I found some suggestions from hlint and applied them:

the redundant $! occurences where of the form:

somefunc = f $! (x,y)

which will not do anything because due to the tuple literal the argument to f already is in WHNF.

-- 24pullrequests

snoyberg commented 8 years ago

Pinging @kazu-yamamoto, I'd rather leave it to you to make a decision on these.

kazu-yamamoto commented 8 years ago

Merged. Thanks.