You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2016/03/04 01:14:21 UTC

arrow git commit: ARROW-15: Fix a naming typo for memory.AllocationManager.AllocationOutcome

Repository: arrow
Updated Branches:
  refs/heads/master 89c6afd20 -> 307977e39


ARROW-15: Fix a naming typo for memory.AllocationManager.AllocationOutcome

Rename FORCED_SUCESS to FORCED_SUC**_C_**ESS in memory.AllocationManager.AllocationOutcome.

Author: proflin <pr...@gmail.com>

Closes #4 from proflin/ARROW-15--Fix-a-naming-typo-for-memory.AllocationManager.AllocationOutcome and squashes the following commits:

0e276fa [proflin] ARROW-15: Fix a naming typo for memory.AllocationManager.AllocationOutcome


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/307977e3
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/307977e3
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/307977e3

Branch: refs/heads/master
Commit: 307977e39eddf62f832a5f1a452963751c6b36a0
Parents: 89c6afd
Author: proflin <pr...@gmail.com>
Authored: Thu Mar 3 16:14:47 2016 -0800
Committer: Wes McKinney <we...@apache.org>
Committed: Thu Mar 3 16:14:47 2016 -0800

----------------------------------------------------------------------
 java/memory/src/main/java/org/apache/arrow/memory/Accountant.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/307977e3/java/memory/src/main/java/org/apache/arrow/memory/Accountant.java
----------------------------------------------------------------------
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 dc75e5d..37c598a 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 @@ class Accountant implements AutoCloseable {
     /**
      * 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.