From 6e7375aedc02bbbac58d7a4787717fe026df91de Mon Sep 17 00:00:00 2001 From: mdb Date: Fri, 2 Nov 2001 00:58:22 +0000 Subject: [PATCH] Fixed spelling error: createSiteIdentifier(), not createSiteIdentifer(). git-svn-id: https://samskivert.googlecode.com/svn/trunk@412 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../src/java/com/samskivert/velocity/Application.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/velocity/Application.java b/projects/samskivert/src/java/com/samskivert/velocity/Application.java index 2573d6d3..75286cc2 100644 --- a/projects/samskivert/src/java/com/samskivert/velocity/Application.java +++ b/projects/samskivert/src/java/com/samskivert/velocity/Application.java @@ -1,5 +1,5 @@ // -// $Id: Application.java,v 1.3 2001/11/01 21:34:03 mdb Exp $ +// $Id: Application.java,v 1.4 2001/11/02 00:58:22 mdb Exp $ // // samskivert library - useful routines for java programs // Copyright (C) 2001 Michael Bayne @@ -92,7 +92,7 @@ public class Application * This will be called after the application's {@link #init} method * has been called. */ - protected SiteIdentifier createSiteIdentifer (ServletContext ctx) + protected SiteIdentifier createSiteIdentifier (ServletContext ctx) { return new IndiscriminateSiteIdentifier(); } @@ -169,7 +169,7 @@ public class Application } // create our site identifier - _siteIdent = createSiteIdentifer(ctx); + _siteIdent = createSiteIdentifier(ctx); } /**