Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 5FBEB200C5D for ; Fri, 7 Apr 2017 11:07:34 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 5E2FE160B97; Fri, 7 Apr 2017 09:07:34 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id CD094160B93 for ; Fri, 7 Apr 2017 11:07:33 +0200 (CEST) Received: (qmail 29696 invoked by uid 500); 7 Apr 2017 09:07:33 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 29681 invoked by uid 99); 7 Apr 2017 09:07:32 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Apr 2017 09:07:32 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 2601C3A05B4 for ; Fri, 7 Apr 2017 09:07:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1790529 - /commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/InterpreterBase.java Date: Fri, 07 Apr 2017 09:07:32 -0000 To: commits@commons.apache.org From: ebourg@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170407090732.2601C3A05B4@svn01-us-west.apache.org> archived-at: Fri, 07 Apr 2017 09:07:34 -0000 Author: ebourg Date: Fri Apr 7 09:07:31 2017 New Revision: 1790529 URL: http://svn.apache.org/viewvc?rev=1790529&view=rev Log: Replaced 'canceled' with 'cancelled' for consistency Modified: commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/InterpreterBase.java Modified: commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/InterpreterBase.java URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/InterpreterBase.java?rev=1790529&r1=1790528&r2=1790529&view=diff ============================================================================== --- commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/InterpreterBase.java (original) +++ commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/InterpreterBase.java Fri Apr 7 09:07:31 2017 @@ -289,8 +289,8 @@ public abstract class InterpreterBase ex } /** - * Checks whether this interpreter execution was canceled due to thread interruption. - * @return true if canceled, false otherwise + * Checks whether this interpreter execution was cancelled due to thread interruption. + * @return true if cancelled, false otherwise */ protected synchronized boolean isCancelled() { if (!cancelled) {