summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorsharkdp <davidpeter@web.de>2021-01-10 21:49:38 +0100
committerDavid Peter <sharkdp@users.noreply.github.com>2021-01-11 21:36:08 +0100
commit060b9981b545cb7c813c3261442c9fa718e4d61a (patch)
tree00166eb4d2eaec819cdada7ab9063bb797436c24 /src
parentb25713938d23b0ff59e82e3e969b56423028ce53 (diff)
Remove deprecated PrettyPrinter methods
Diffstat (limited to 'src')
-rw-r--r--src/pretty_printer.rs45
1 files changed, 2 insertions, 43 deletions
diff --git a/src/pretty_printer.rs b/src/pretty_printer.rs
index 272e073b..44da3283 100644
--- a/src/pretty_printer.rs
+++ b/src/pretty_printer.rs
@@ -90,48 +90,17 @@ impl<'a> PrettyPrinter<'a> {
self
}
- /// Add STDIN as an input (with customized name)
- #[deprecated]
- pub fn input_stdin_with_name(&mut self, name: impl AsRef<OsStr>) -> &mut Self {
- self.inputs
- .push(Input::from_stdin().name(name).kind("File"));
- self
- }
-
/// Add a byte string as an input
pub fn input_from_bytes(&mut self, content: &'a [u8]) -> &mut Self {
self.input_from_reader(content)
}
- /// Add a byte string as an input (with customized name)
- #[deprecated]
- #[allow(deprecated)]
- pub fn input_from_bytes_with_name(
- &mut self,
- content: &'a [u8],
- name: impl AsRef<OsStr>,
- ) -> &mut Self {
- self.input_from_reader_with_name(content, name)
- }
-
/// Add a custom reader as an input
pub fn input_from_reader<R: Read + 'a>(&mut self, reader: R) -> &mut Self {
self.inputs.push(Input::from_reader(reader));
self
}
- /// Add a custom reader as an input (with customized name)
- #[deprecated]
- pub fn input_from_reader_with_name<R: Read + 'a>(
- &mut self,
- reader: R,
- name: impl AsRef<OsStr>,
- ) -> &mut Self {
- self.inputs
- .push(Input::from_reader(reader).name(name).kind("File"));
- self
- }
-
/// Specify the syntax file which should be used (default: auto-detect)
pub fn language(&mut self, language: &'a str) -> &mut Self {
self.config.language = Some(language);
@@ -188,19 +157,9 @@ impl<'a> PrettyPrinter<'a> {
/// Whether to show modification markers for VCS changes. This has no effect if
/// the `git` feature is not activated.
- #[cfg_attr(
- not(feature = "git"),
- deprecated(
- note = "Using vcs_modification_markers without the 'git' feature has no effect. \
- The function will be removed (for non-'git' use cases) in the future."
- )
- )]
- #[allow(unused_variables)]
+ #[cfg(feature = "git")]
pub fn vcs_modification_markers(&mut self, yes: bool) -> &mut Self {
- #[cfg(feature = "git")]
- {
- self.active_style_components.vcs_modification_markers = yes;
- }
+ self.active_style_components.vcs_modification_markers = yes;
self
}