Skip to content

Commit

Permalink
Updates for weekly release
Browse files Browse the repository at this point in the history
  • Loading branch information
tobi committed Jan 19, 2012
1 parent b9b53e2 commit ba03b2a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion authrequest.go
Expand Up @@ -8,7 +8,7 @@ import (
"errors"
"strings"
"io"
"url"
"net/url"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions verify.go
Expand Up @@ -7,10 +7,10 @@ package openid
import (
"errors"
"log"
"http"
"net/http"
"regexp"
"bytes"
"url"
"net/url"
)

// Verify that the url given match a successfull authentication
Expand Down
2 changes: 1 addition & 1 deletion xrds.go
Expand Up @@ -5,7 +5,7 @@
package openid

import (
"xml"
"encoding/xml"
"io"
"strings"
)
Expand Down
4 changes: 2 additions & 2 deletions yadis.go
Expand Up @@ -6,8 +6,8 @@ package openid

import (
"errors"
"http"
"url"
"net/http"
"net/url"
"io"
"io/ioutil"
"bytes"
Expand Down

0 comments on commit ba03b2a

Please sign in to comment.