File tree Expand file tree Collapse file tree 3 files changed +3
-18
lines changed Expand file tree Collapse file tree 3 files changed +3
-18
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: 0983ebe5310d4eb6d289f636f7ed0536c08bbc0e
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
- refs/heads/dist-snap: 206ad61fd8e1eb6ff8a05406b70f46d1df766c01
9
+ refs/heads/dist-snap: 5fe553d30f6e3ef7c021092533f1d7c74f6e8fb6
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
12
12
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
Original file line number Diff line number Diff line change 1
- // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1
+ // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2
2
// file at the top-level directory of this distribution and at
3
3
// http://rust-lang.org/COPYRIGHT.
4
4
//
@@ -1164,9 +1164,6 @@ impl Ord for Json {
1164
1164
}
1165
1165
}
1166
1166
}
1167
- fn le ( & self , other : & Json ) -> bool { !( * other) . lt ( & ( * self ) ) }
1168
- fn ge ( & self , other : & Json ) -> bool { !( * self ) . lt ( other) }
1169
- fn gt ( & self , other : & Json ) -> bool { ( * other) . lt ( & ( * self ) ) }
1170
1167
}
1171
1168
1172
1169
/// A trait for converting values to JSON
Original file line number Diff line number Diff line change 1
- // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1
+ // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2
2
// file at the top-level directory of this distribution and at
3
3
// http://rust-lang.org/COPYRIGHT.
4
4
//
@@ -37,18 +37,6 @@ impl cmp::Ord for Identifier {
37
37
( & AlphaNumeric ( _) , _) => false
38
38
}
39
39
}
40
- #[ inline]
41
- fn le ( & self , other : & Identifier ) -> bool {
42
- ! ( other < self )
43
- }
44
- #[ inline]
45
- fn gt ( & self , other : & Identifier ) -> bool {
46
- other < self
47
- }
48
- #[ inline]
49
- fn ge ( & self , other : & Identifier ) -> bool {
50
- ! ( self < other)
51
- }
52
40
}
53
41
54
42
impl ToStr for Identifier {
You can’t perform that action at this time.
0 commit comments