Skip to content

Commit 10302d0

Browse files
authored
Merge pull request #375 from projectfluent/clippy
2 parents 93105b1 + bd091bb commit 10302d0

File tree

8 files changed

+15
-21
lines changed

8 files changed

+15
-21
lines changed

fluent-bundle/examples/custom_type.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ enum DateTimeStyleValue {
3333

3434
// This is just a helper to make it easier to convert
3535
// a value provided to FluentArgs into an option value.
36-
impl<'l> From<&FluentValue<'l>> for DateTimeStyleValue {
36+
impl From<&FluentValue<'_>> for DateTimeStyleValue {
3737
fn from(input: &FluentValue) -> Self {
3838
if let FluentValue::String(s) = input {
3939
match s.as_ref() {
@@ -73,7 +73,7 @@ impl DateTimeOptions {
7373
}
7474
}
7575

76-
impl<'l> From<&FluentArgs<'l>> for DateTimeOptions {
76+
impl From<&FluentArgs<'_>> for DateTimeOptions {
7777
fn from(input: &FluentArgs) -> Self {
7878
let mut opts = Self::default();
7979
opts.merge(input);

fluent-bundle/examples/functions.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ fn main() {
3535
// Test for a function that accepts named arguments
3636
bundle
3737
.add_function("BASE_OWNERSHIP", |_args, named_args| {
38-
return match named_args.get("ownership") {
38+
match named_args.get("ownership") {
3939
Some(FluentValue::String(ref string)) => {
4040
format!("All your base belong to {}", string).into()
4141
}
4242
_ => FluentValue::Error,
43-
};
43+
}
4444
})
4545
.expect("Failed to add a function to the bundle.");
4646

fluent-bundle/src/types/mod.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ pub trait AnyEq: Any + 'static {
6060

6161
impl<T: Any + PartialEq> AnyEq for T {
6262
fn equals(&self, other: &dyn Any) -> bool {
63-
other
64-
.downcast_ref::<Self>()
65-
.map_or(false, |that| self == that)
63+
other.downcast_ref::<Self>() == Some(self)
6664
}
6765
fn as_any(&self) -> &dyn Any {
6866
self
@@ -84,7 +82,7 @@ pub enum FluentValue<'source> {
8482
Error,
8583
}
8684

87-
impl<'s> PartialEq for FluentValue<'s> {
85+
impl PartialEq for FluentValue<'_> {
8886
fn eq(&self, other: &Self) -> bool {
8987
match (self, other) {
9088
(FluentValue::String(s), FluentValue::String(s2)) => s == s2,
@@ -95,7 +93,7 @@ impl<'s> PartialEq for FluentValue<'s> {
9593
}
9694
}
9795

98-
impl<'s> Clone for FluentValue<'s> {
96+
impl Clone for FluentValue<'_> {
9997
fn clone(&self) -> Self {
10098
match self {
10199
FluentValue::String(s) => FluentValue::String(s.clone()),
@@ -291,7 +289,7 @@ impl<'source> FluentValue<'source> {
291289
}
292290
}
293291

294-
impl<'source> From<String> for FluentValue<'source> {
292+
impl From<String> for FluentValue<'_> {
295293
fn from(s: String) -> Self {
296294
FluentValue::String(s.into())
297295
}

fluent-bundle/src/types/number.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,7 @@ impl FluentNumber {
150150
if let Some(minfd) = self.options.minimum_fraction_digits {
151151
if let Some(pos) = val.find('.') {
152152
let frac_num = val.len() - pos - 1;
153-
let missing = if frac_num > minfd {
154-
0
155-
} else {
156-
minfd - frac_num
157-
};
153+
let missing = minfd.saturating_sub(frac_num);
158154
val = format!("{}{}", val, "0".repeat(missing));
159155
} else {
160156
val = format!("{}.{}", val, "0".repeat(minfd));
@@ -179,7 +175,7 @@ impl FromStr for FluentNumber {
179175
}
180176
}
181177

182-
impl<'l> From<FluentNumber> for FluentValue<'l> {
178+
impl From<FluentNumber> for FluentValue<'_> {
183179
fn from(input: FluentNumber) -> Self {
184180
FluentValue::Number(input)
185181
}

fluent-bundle/tests/custom_types.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fn fluent_date_time_builtin() {
5757
None,
5858
}
5959

60-
impl<'l> From<&FluentValue<'l>> for DateTimeStyleValue {
60+
impl From<&FluentValue<'_>> for DateTimeStyleValue {
6161
fn from(input: &FluentValue) -> Self {
6262
if let FluentValue::String(s) = input {
6363
match s.as_ref() {
@@ -91,7 +91,7 @@ fn fluent_date_time_builtin() {
9191
}
9292
}
9393

94-
impl<'l> From<&FluentArgs<'l>> for DateTimeOptions {
94+
impl From<&FluentArgs<'_>> for DateTimeOptions {
9595
fn from(input: &FluentArgs) -> Self {
9696
let mut opts = Self::default();
9797
opts.merge(input);

fluent-syntax/src/parser/core.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ where
1818
S: Slice<'s>,
1919
{
2020
pub fn new(source: S) -> Self {
21-
let length = source.as_ref().as_bytes().len();
21+
let length = source.as_ref().len();
2222
Self {
2323
source,
2424
ptr: 0,

fluent-syntax/src/parser/slice.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub trait Slice<'s>: AsRef<str> + Clone + PartialEq {
99
fn trim(&mut self);
1010
}
1111

12-
impl<'s> Slice<'s> for String {
12+
impl Slice<'_> for String {
1313
fn slice(&self, range: Range<usize>) -> Self {
1414
self[range].to_string()
1515
}

fluent-syntax/tests/helper/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fn adapt_pattern(pattern: &mut ast::Pattern<String>, crlf: bool) {
1515
match element {
1616
ast::PatternElement::TextElement { value } => {
1717
let mut start = 0;
18-
let len = value.as_bytes().len();
18+
let len = value.len();
1919
for (i, b) in value.as_bytes().iter().enumerate() {
2020
if b == &b'\n' {
2121
if crlf {

0 commit comments

Comments
 (0)