servo: Merge #8920 - remove the "core" feature attribute from canvas (from romankl:core-feature); r=Ms2ger

The core feature is marked as stable and gives this nice warning:
```
servo/components/canvas_traits/lib.rs:7:12: 7:16 warning: this feature is stable. attribute no longer needed, #[warn(stable_features)] on by default
/servo/components/canvas_traits/lib.rs:7 #![feature(core)]
```
This commit removes the usage of this feature.

Source-Repo: https://github.com/servo/servo
Source-Revision: 996c0a60b81e7d7e0fbfea81a546771ea9327df6
This commit is contained in:
Roman Klauke 2015-12-11 02:10:37 +05:01
Родитель b4e76a31ac
Коммит f19fc89d4a
2 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -2,7 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![feature(core)]
#![feature(nonzero)]
#![feature(slice_bytes)]
#![feature(vec_push_all)]

Просмотреть файл

@ -4,7 +4,6 @@
#![crate_name = "canvas_traits"]
#![crate_type = "rlib"]
#![feature(core)]
#![feature(custom_derive)]
#![feature(nonzero)]
#![feature(plugin)]