From 0e276fa2d0eb4c39c6958791c3a20d804afc8098 Mon Sep 17 00:00:00 2001 From: proflin Date: Sun, 21 Feb 2016 09:50:29 +0800 Subject: [PATCH] ARROW-15: Fix a naming typo for memory.AllocationManager.AllocationOutcome --- .../src/main/java/org/apache/arrow/memory/Accountant.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/memory/src/main/java/org/apache/arrow/memory/Accountant.java b/java/memory/src/main/java/org/apache/arrow/memory/Accountant.java index dc75e5d7231a8..37c598ad89ece 100644 --- a/java/memory/src/main/java/org/apache/arrow/memory/Accountant.java +++ b/java/memory/src/main/java/org/apache/arrow/memory/Accountant.java @@ -247,7 +247,7 @@ public static enum AllocationOutcome { /** * Allocation succeeded but only because the allocator was forced to move beyond a limit. */ - FORCED_SUCESS(true), + FORCED_SUCCESS(true), /** * Allocation failed because the local allocator's limits were exceeded.