husted      2004/03/12 15:50:09

  Modified:    web/example tour.html
  Log:
  Change methods from protected to private (it's a final class)
  
  Revision  Changes    Path
  1.9       +4 -4      jakarta-struts/web/example/tour.html
  
  Index: tour.html
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/web/example/tour.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- tour.html 12 Mar 2004 05:19:45 -0000      1.8
  +++ tour.html 12 Mar 2004 23:50:09 -0000      1.9
  @@ -461,9 +461,9 @@
       private static String USERNAME = "username";
       private static String PASSWORD = "password";
   
  -    protected User getUser(UserDatabase database, String username,
  -                           String password, ActionMessages errors)
  -                           throws ExpiredPasswordException {
  +    User getUser(UserDatabase database, String username,
  +                 String password, ActionMessages errors)
  +                 throws ExpiredPasswordException {
   
           User user = null;
           if (database == null){
  @@ -487,7 +487,7 @@
   
       }
   
  -    protected void SaveUser(HttpServletRequest request, User user) {
  +    void SaveUser(HttpServletRequest request, User user) {
   
           HttpSession session = request.getSession();
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to