You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2013/07/03 23:46:41 UTC

svn commit: r1499568 - /subversion/trunk/tools/dist/backport.pl

Author: danielsh
Date: Wed Jul  3 21:46:41 2013
New Revision: 1499568

URL: http://svn.apache.org/r1499568
Log:
* tools/dist/backport.pl: Regroup a misplaced 'use' statement.
    No functional change.

Modified:
    subversion/trunk/tools/dist/backport.pl

Modified: subversion/trunk/tools/dist/backport.pl
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/backport.pl?rev=1499568&r1=1499567&r2=1499568&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport.pl (original)
+++ subversion/trunk/tools/dist/backport.pl Wed Jul  3 21:46:41 2013
@@ -3,8 +3,6 @@ use warnings;
 use strict;
 use feature qw/switch say/;
 
-use File::Copy qw/copy move/;
-
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information
@@ -23,6 +21,7 @@ use File::Copy qw/copy move/;
 # under the License.
 
 use Term::ReadKey qw/ReadMode ReadKey/;
+use File::Copy qw/copy move/;
 use File::Temp qw/tempfile/;
 use POSIX qw/ctermid/;