Skip to content

Commit be36395

Browse files
committed
back to OGNL 2.6.9 that's Javassist-free
1 parent f08d380 commit be36395

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
<dependency>
240240
<groupId>ognl</groupId>
241241
<artifactId>ognl</artifactId>
242-
<version>3.0.1</version>
242+
<version>2.6.9</version>
243243
<scope>provided</scope>
244244
<optional>true</optional>
245245
</dependency>

src/main/java/org/apache/ibatis/builder/xml/dynamic/DynamicContext.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -105,21 +105,5 @@ public void setProperty(Map context, Object target, Object name, Object value)
105105
Map map = (Map) target;
106106
map.put(name, value);
107107
}
108-
109-
/**
110-
* @since 3.0.5
111-
*/
112-
public String getSourceAccessor(OgnlContext context, Object target, Object index) {
113-
// TODO verify if this method is needed
114-
return null;
115-
}
116-
117-
/**
118-
* @since 3.0.5
119-
*/
120-
public String getSourceSetter(OgnlContext context, Object target, Object index) {
121-
// TODO verify if this method is needed
122-
return null;
123-
}
124108
}
125109
}

0 commit comments

Comments
 (0)