Skip to content

Commit

Permalink
null
Browse files Browse the repository at this point in the history
  • Loading branch information
memelee committed Jan 30, 2014
1 parent 6e04a4e commit 70770ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Binary file modified GoOnlineJudge
Binary file not shown.
10 changes: 5 additions & 5 deletions controllers/Problem.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ type ProblemController struct {
classes.Controller
}

func (this *ProblemController) Detail(w http.ResponseWriter, r *http.Request) {
log.Println("Problem Detail")
this.Init(w, r)
}

func (this *ProblemController) List(w http.ResponseWriter, r *http.Request) {
log.Println("Problem List")
this.Init(w, r)
Expand All @@ -25,3 +20,8 @@ func (this *ProblemController) List(w http.ResponseWriter, r *http.Request) {
this.Data["Title"] = "Problem List"
t.Execute(w, this.Data)
}

func (this *ProblemController) Detail(w http.ResponseWriter, r *http.Request) {
log.Println("Problem Detail")
this.Init(w, r)
}

0 comments on commit 70770ad

Please sign in to comment.