Skip to content

Commit

Permalink
fixing annotation in ValidationServlet.java
Browse files Browse the repository at this point in the history
  • Loading branch information
JLouback committed Feb 1, 2014
1 parent 7c56fb8 commit 6da1905
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 9 deletions.
Binary file added build/classes/main/DialServlet.class
Binary file not shown.
Binary file added build/classes/main/ValidationServlet.class
Binary file not shown.
3 changes: 0 additions & 3 deletions src/main/DialServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@
public class DialServlet extends HttpServlet {
private static final long serialVersionUID = 1L;

/**
* @see HttpServlet#HttpServlet()
*/
public DialServlet() {
super();
// TODO Auto-generated constructor stub
Expand Down
7 changes: 1 addition & 6 deletions src/main/ValidationServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
package main;

import java.io.IOException;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
Expand All @@ -32,13 +30,10 @@
import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberFormat;
import com.google.i18n.phonenumbers.Phonenumber.PhoneNumber;

@WebServlet("/validationservlet/*")
@WebServlet("/validationservlet")
public class ValidationServlet extends HttpServlet {
private static final long serialVersionUID = 1L;

/**
* Default constructor.
*/
public ValidationServlet() {
// TODO Auto-generated constructor stub
}
Expand Down

0 comments on commit 6da1905

Please sign in to comment.