137138139140141142143144145
* * @return the popped SFSB context handle */ public static SFSBContextHandle popCall() { ArrayList<SFSBContextHandle> stack = currentSFSBCallStack(); SFSBContextHandle result = stack.remove(stack.size() - 1); stack.trimToSize(); return result; }
899091929394959697
* * @return the popped SFSB context handle */ public SFSBContextHandle popCall() { ArrayList<SFSBContextHandle> stack = currentSFSBCallStack(); SFSBContextHandle result = stack.remove(stack.size() - 1); stack.trimToSize(); return result; }
93949596979899100101
136137138139140141142143144