Skip to content

Commit

Permalink
Merge pull request #30 from ortus-boxlang/development
Browse files Browse the repository at this point in the history
beta26
  • Loading branch information
lmajano authored Jan 17, 2025
2 parents 62e27b1 + a7598f8 commit fb5602c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Mon Dec 02 11:44:52 UTC 2024
boxlangVersion=1.0.0-beta25
#Fri Dec 13 21:23:39 UTC 2024
boxlangVersion=1.0.0-beta26
jdkVersion=21
version=1.0.0-beta25
version=1.0.0-beta26
group=ortus.boxlang
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,27 @@

import ortus.boxlang.runtime.events.BaseInterceptor;
import ortus.boxlang.runtime.events.InterceptionPoint;
import ortus.boxlang.runtime.events.Interceptor;
import ortus.boxlang.runtime.scopes.Key;
import ortus.boxlang.runtime.types.IStruct;
import ortus.boxlang.runtime.util.ResolvedFilePath;

/**
* I allow paths to be expanded using the servlets mappings/resource manager
*/
@Interceptor( autoLoad = false )
public class ServletMappingInterceptor extends BaseInterceptor {

private ServletContext servletContext;

/**
* No Arg-Constructor
*/
public ServletMappingInterceptor() {
}

/**
* Constructor
*
*/
public ServletMappingInterceptor( ServletContext servletContext ) {
this.servletContext = servletContext;
Expand Down

0 comments on commit fb5602c

Please sign in to comment.