You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by st...@apache.org on 2020/01/08 11:32:40 UTC

[hadoop] branch trunk updated: HADOOP-16751. Followup: move java import. (#1799)

This is an automated email from the ASF dual-hosted git repository.

stevel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/trunk by this push:
     new bb1aed4  HADOOP-16751. Followup: move java import. (#1799)
bb1aed4 is described below

commit bb1aed475b1dac1a9bf1069181016eb5b20ae55e
Author: Steve Loughran <st...@cloudera.com>
AuthorDate: Wed Jan 8 11:32:31 2020 +0000

    HADOOP-16751. Followup: move java import. (#1799)
    
    This moves the import of a java module to the preferred place in the import ordering.
    
    Change-Id: I1a594e3d954554a72c2b71c954eda0ae940a8f70
---
 .../src/main/java/org/apache/hadoop/util/DurationInfo.java            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/DurationInfo.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/DurationInfo.java
index e0e690a..490562b 100644
--- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/DurationInfo.java
+++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/DurationInfo.java
@@ -18,13 +18,13 @@
 
 package org.apache.hadoop.util;
 
+import java.util.function.Supplier;
+
 import org.slf4j.Logger;
 
 import org.apache.hadoop.classification.InterfaceAudience.Public;
 import org.apache.hadoop.classification.InterfaceStability.Unstable;
 
-import java.util.function.Supplier;
-
 /**
  * A duration with logging of final state at info or debug
  * in the {@code close()} call.


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org