self (makes chaining easier).
GreenSock Docs
TimelineMax
.removePause()
.removePause( position:* ) : *
Removes pauses that were added to a timeline via TimelineMax.addPause().
Parameters
position: *
the time (or label) where the pause should be removed from.
Returns : *

Details
Removes pauses that were added to a timeline via TimelineMax.addPause().
var tl = new TimelineMax();
//insert a pause at exactly 2 seconds into the timeline
tl.to(obj, 1, {x:100})
.addPause() //added at time of 1
.to(obj, 1, {opacity:0});
//later on remove the pause
tl.removePause(1);
*note removePause() is only available in TimelineMax.