Skip to content

Commit fc2c77b

Browse files
committed
Remove AnimationSequence and AnimationGroup
1 parent ff302dc commit fc2c77b

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

src/group-constructors.js

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -195,21 +195,4 @@
195195

196196
scope.groupChildDuration = groupChildDuration;
197197

198-
// Alias GroupEffect & SequenceEffect to AnimationGroup & AnimationSequence respectively, to
199-
// support old constructors (Animation*) for a deprecation period. Should be removed after 23 June
200-
// 2015.
201-
window.AnimationSequence = function() {
202-
shared.deprecated('window.AnimationSequence', '2015-03-23', 'Use window.SequenceEffect instead.');
203-
window.SequenceEffect.apply(this, arguments);
204-
};
205-
window.AnimationSequence.prototype = Object.create(window.SequenceEffect.prototype);
206-
window.AnimationSequence.prototype.constructor = window.AnimationSequence;
207-
208-
window.AnimationGroup = function() {
209-
shared.deprecated('window.AnimationGroup', '2015-03-23', 'Use window.GroupEffect instead.');
210-
window.GroupEffect.apply(this, arguments);
211-
};
212-
window.AnimationGroup.prototype = Object.create(window.GroupEffect.prototype);
213-
window.AnimationGroup.prototype.constructor = window.AnimationGroup;
214-
215198
})(webAnimationsShared, webAnimationsNext, webAnimationsTesting);

0 commit comments

Comments
 (0)