mirror of
https://github.com/actix/actix-web.git
synced 2024-11-20 08:31:09 +00:00
remove unused code
This commit is contained in:
parent
115b30d9cc
commit
b320dc127a
2 changed files with 6 additions and 24 deletions
|
@ -10,7 +10,7 @@ matrix:
|
||||||
include:
|
include:
|
||||||
- rust: stable
|
- rust: stable
|
||||||
- rust: beta
|
- rust: beta
|
||||||
- rust: nightly
|
- rust: nightly-2019-03-02
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
|
|
||||||
|
@ -24,6 +24,11 @@ before_install:
|
||||||
- sudo apt-get update -qq
|
- sudo apt-get update -qq
|
||||||
- sudo apt-get install -y openssl libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
|
- sudo apt-get install -y openssl libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
|
||||||
|
|
||||||
|
before_cache: |
|
||||||
|
if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then
|
||||||
|
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin -f
|
||||||
|
fi
|
||||||
|
|
||||||
# Add clippy
|
# Add clippy
|
||||||
before_script:
|
before_script:
|
||||||
- export PATH=$PATH:~/.cargo/bin
|
- export PATH=$PATH:~/.cargo/bin
|
||||||
|
|
23
src/app.rs
23
src/app.rs
|
@ -54,12 +54,6 @@ impl App<PayloadStream, AppChain> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for App<PayloadStream, AppChain> {
|
|
||||||
fn default() -> Self {
|
|
||||||
App::new()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<P, T> App<P, T>
|
impl<P, T> App<P, T>
|
||||||
where
|
where
|
||||||
P: 'static,
|
P: 'static,
|
||||||
|
@ -249,23 +243,6 @@ where
|
||||||
_t: PhantomData,
|
_t: PhantomData,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Complete applicatin chain configuration and start resource
|
|
||||||
/// configuration.
|
|
||||||
pub fn router<B>(self) -> AppRouter<T, P, B, AppEntry<P>> {
|
|
||||||
let fref = Rc::new(RefCell::new(None));
|
|
||||||
AppRouter {
|
|
||||||
chain: self.chain,
|
|
||||||
services: Vec::new(),
|
|
||||||
default: None,
|
|
||||||
defaults: Vec::new(),
|
|
||||||
endpoint: AppEntry::new(fref.clone()),
|
|
||||||
factory_ref: fref,
|
|
||||||
extensions: self.extensions,
|
|
||||||
state: self.state,
|
|
||||||
_t: PhantomData,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Structure that follows the builder pattern for building application
|
/// Structure that follows the builder pattern for building application
|
||||||
|
|
Loading…
Reference in a new issue