diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-02-25 15:40:14 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-02-25 15:40:14 -0800 |
commit | a75c663cd2056919a58ea949c519aad90eddd2f5 (patch) | |
tree | 452a4b9b459c9c8f19e3c39deca2adf95f8b422b | |
parent | 81a535da88617e2ae24b79a9d7413008e0ebc23b (diff) | |
parent | 5d308512ffde7efa6b5aad9549320b394b79b740 (diff) | |
download | git-a75c663cd2056919a58ea949c519aad90eddd2f5.tar.gz |
Merge branch 'dp/remove-duplicated-header-inclusion'
Code clean-up.
* dp/remove-duplicated-header-inclusion:
do not include the same header twice
-rw-r--r-- | builtin/fetch.c | 1 | ||||
-rw-r--r-- | trailer.c | 1 | ||||
-rw-r--r-- | transport-helper.c | 1 | ||||
-rw-r--r-- | userdiff.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c index 7b84d35d83..75a55e590b 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -11,7 +11,6 @@ #include "run-command.h" #include "parse-options.h" #include "sigchain.h" -#include "transport.h" #include "submodule.h" #include "connected.h" #include "argv-array.h" @@ -1,7 +1,6 @@ #include "cache.h" #include "string-list.h" #include "run-command.h" -#include "string-list.h" #include "commit.h" #include "trailer.h" /* diff --git a/transport-helper.c b/transport-helper.c index 7441d5d515..7dc4a443ae 100644 --- a/transport-helper.c +++ b/transport-helper.c @@ -5,7 +5,6 @@ #include "commit.h" #include "diff.h" #include "revision.h" -#include "quote.h" #include "remote.h" #include "string-list.h" #include "thread-utils.h" diff --git a/userdiff.c b/userdiff.c index fad52d6392..2ccbee50cb 100644 --- a/userdiff.c +++ b/userdiff.c @@ -1,6 +1,5 @@ #include "cache.h" #include "userdiff.h" -#include "cache.h" #include "attr.h" static struct userdiff_driver *drivers; |