Changeset 50c67d5904d67682fc9072441591fbe0027a544c

Show
Ignore:
Timestamp:
09/22/07 15:22:45 (1 year ago)
Author:
Christopher Jung <bktheg@web.de>
git-committer:
Christopher Jung <bktheg@web.de> 1190467365 +0200
git-parent:

[0964094fb1854f82559922a5c165fc4e3886f8a2]

git-author:
Christopher Jung <bktheg@web.de> 1188048856 +0200
Message:

Die HttpServlet?-Variable 'context' gefixt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/net/driftingsouls/ds2/server/framework/pipeline/DefaultServletRequestFilter.java

    r21f64c6 r50c67d5  
    3737import net.driftingsouls.ds2.server.framework.Common; 
    3838import net.driftingsouls.ds2.server.framework.Configuration; 
    39 import net.driftingsouls.ds2.server.framework.Context; 
    40 import net.driftingsouls.ds2.server.framework.ContextMap; 
    4139import net.driftingsouls.ds2.server.framework.Loggable; 
    4240import net.driftingsouls.ds2.server.framework.pipeline.configuration.PipelineConfig; 
     
    7169                context.putVariable(HttpServlet.class, "response", httpResponse); 
    7270                context.putVariable(HttpServlet.class, "request", httpRequest); 
    73                 context.putVariable(HttpServlet.class, "context", context); 
     71                context.putVariable(HttpServlet.class, "context", this.context); 
    7472                context.putVariable(HttpServlet.class, "chain", chain); 
    7573