mirror of
https://github.com/apache/struts.git
synced 2026-08-07 15:46:57 +00:00
Inline variable assignment
git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1188968 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -87,8 +87,7 @@ public class ContainUtil {
|
||||
}
|
||||
} else if (obj1.getClass().isArray()) {
|
||||
for (int i = 0; i < Array.getLength(obj1); i++) {
|
||||
Object value = null;
|
||||
value = Array.get(obj1, i);
|
||||
Object value = Array.get(obj1, i);
|
||||
|
||||
if (obj2.equals(value)) {
|
||||
//log.debug("obj1 is an array and contains obj2");
|
||||
|
||||
Reference in New Issue
Block a user