mirror of
https://github.com/actix/actix-web.git
synced 2025-01-17 12:45:31 +00:00
remove debug prints
This commit is contained in:
parent
aa626a1e72
commit
1eb89b8375
2 changed files with 1 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## [0.2.1] - 2019-05-2
|
## [0.2.1] - 2019-05-25
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
|
@ -239,7 +239,6 @@ where
|
||||||
{
|
{
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.pool.clear();
|
self.pool.clear();
|
||||||
println!("DROP: APP-INIT-ENTRY");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -436,7 +435,6 @@ mod tests {
|
||||||
impl Drop for DropData {
|
impl Drop for DropData {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.0.store(true, Ordering::Relaxed);
|
self.0.store(true, Ordering::Relaxed);
|
||||||
println!("Dropping!");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue