diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-10-05 02:47:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-05 02:47:30 -0500 |
commit | 30cf58eae8ff9a20fef630998311be3e49a479c7 (patch) | |
tree | 9088d83b988021c78f9f7afbb02db43c3b95dad1 | |
parent | c2727b18b0a42ed88f3a8bb5a5535a8206314f8f (diff) | |
parent | 86173d7a58da0f1079803f4c5564c8a7589c58e8 (diff) | |
download | servo-30cf58eae8ff9a20fef630998311be3e49a479c7.tar.gz servo-30cf58eae8ff9a20fef630998311be3e49a479c7.zip |
Auto merge of #13585 - shubheksha:fix/13581, r=jdm
Removed duplicate #![feature(plugin)]
<!-- Please describe your changes on the following line: -->
Removed duplicate ` #![feature(plugin)]` from two files.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #13581 (github issue number if applicable).
<!-- Either: -->
- [ ] There are tests for these changes OR
- [X] These changes do not require tests because it's removing a few lines.
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13585)
<!-- Reviewable:end -->
-rw-r--r-- | components/compositing/lib.rs | 1 | ||||
-rw-r--r-- | components/constellation/lib.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/components/compositing/lib.rs b/components/compositing/lib.rs index 3888b03e6d3..8ce9a6370e6 100644 --- a/components/compositing/lib.rs +++ b/components/compositing/lib.rs @@ -5,7 +5,6 @@ #![feature(box_syntax)] #![feature(custom_derive)] #![feature(plugin)] -#![feature(plugin)] #![plugin(plugins)] #![deny(unsafe_code)] diff --git a/components/constellation/lib.rs b/components/constellation/lib.rs index d4df0d47b1a..a7d7fad33ce 100644 --- a/components/constellation/lib.rs +++ b/components/constellation/lib.rs @@ -6,7 +6,6 @@ #![feature(custom_derive)] #![feature(plugin)] #![feature(mpsc_select)] -#![feature(plugin)] #![plugin(plugins)] #![deny(unsafe_code)] |