View | Details | Raw Unified | Return to bug 59895
Collapse All | Expand All

(-)src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java (-1 / +8 lines)
Lines 108-113 Link Here
108
        IMessageHandler baseHandler, 
108
        IMessageHandler baseHandler, 
109
        boolean batch) throws IOException, AbortException {
109
        boolean batch) throws IOException, AbortException {
110
        boolean ret = true;
110
        boolean ret = true;
111
        boolean returnSet = false;
111
    	batchCompile = batch;
112
    	batchCompile = batch;
112
    	
113
    	
113
        try {
114
        try {
Lines 204-211 Link Here
204
        	if (zos != null) {
205
        	if (zos != null) {
205
        		closeOutputStream();
206
        		closeOutputStream();
206
        	}
207
        	}
207
            ret = !handler.hasErrors();
208
            if (null != handler) {
209
                ret = !handler.hasErrors();
210
                returnSet = true;
211
            }
208
            handler = null;
212
            handler = null;
213
        }
214
        if (!returnSet) {
215
            MessageUtil.warn(baseHandler, "return without setting?");
209
        }
216
        }
210
        return ret;
217
        return ret;
211
    }
218
    }

Return to bug 59895