diff options
author | Daniel Burrows <Daniel_Burrows@alumni.brown.edu> | 2008-04-01 20:54:16 -0700 |
---|---|---|
committer | Daniel Burrows <Daniel_Burrows@alumni.brown.edu> | 2008-04-01 20:54:16 -0700 |
commit | faa2bd8278cf8118e852dd3a1a8da93b642b60ac (patch) | |
tree | e3773a7dc95a534e7ce2b670ec2ea894a0f83bc6 | |
parent | 8a27f5da85830fe500077891c5db1c77ae1773a6 (diff) |
Remove a debugging message that I left in by accident (if it ever triggers the program is about to crash anyway).
-rw-r--r-- | apt-pkg/contrib/configuration.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apt-pkg/contrib/configuration.cc b/apt-pkg/contrib/configuration.cc index 6f617e914..843e91f2a 100644 --- a/apt-pkg/contrib/configuration.cc +++ b/apt-pkg/contrib/configuration.cc @@ -635,11 +635,6 @@ bool ReadConfigFile(Configuration &Conf,const string &FName,bool AsSectional, for (std::string::const_iterator I = Start; I != End; ++I) { - if(Start > End) - { - _error->Error("Why is Start > End?"); - } - if (*I == '"') InQuote = !InQuote; |