Hi All, I was trying to build branch 12.04 today which failed. I believe it is from commit r1646971. The fix is simply by importing the right libraries as shown below. Is this normal though? I thought stable branches are not supposed to crash while building.
Index: framework/widget/src/org/ofbiz/widget/tree/ModelTree.java =================================================================== --- framework/widget/src/org/ofbiz/widget/tree/ModelTree.java (revision 1647061) +++ framework/widget/src/org/ofbiz/widget/tree/ModelTree.java (working copy) @@ -20,6 +20,8 @@ import java.io.IOException; import java.io.StringWriter; +import java.util.ArrayList; +import java.util.Collections; import java.util.HashMap; import java.util.Iterator; import java.util.List; Taher Alkhateeb