Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Secure Programming #3

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix some issues
  • Loading branch information
alifanuraniputri committed Dec 31, 2015
commit aa1e9023f12ea430bee22f7810f10602abe855b2
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ public class HammerHead extends HttpServlet {
/**
* Description of the Field
*/
// ISSUE 5
protected static SimpleDateFormat httpDateFormat;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public class Course {

private final List<AbstractLesson> lessons = new LinkedList<AbstractLesson>();

//ISSUE 4
private final static String PROPERTIES_FILENAME = HammerHead.propertiesPath;

private WebgoatProperties properties = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public abstract class Screen {
/**
* Description of the Field
*/
// ISSUE 6
public static int MAIN_SIZE = 375;

// private Head head;
Expand Down