File tree Expand file tree Collapse file tree 2 files changed +0
-53
lines changed
java/src/org/openqa/selenium/remote Expand file tree Collapse file tree 2 files changed +0
-53
lines changed Original file line number Diff line number Diff line change 32
32
import java .util .function .Predicate ;
33
33
import java .util .logging .Logger ;
34
34
import java .util .stream .Collectors ;
35
- import java .util .stream .Stream ;
36
35
import java .util .stream .StreamSupport ;
37
36
import net .bytebuddy .ByteBuddy ;
38
37
import net .bytebuddy .description .annotation .AnnotationDescription ;
50
49
import org .openqa .selenium .WrapsDriver ;
51
50
import org .openqa .selenium .internal .Require ;
52
51
import org .openqa .selenium .logging .HasLogEvents ;
53
- import org .openqa .selenium .remote .html5 .AddWebStorage ;
54
52
import org .openqa .selenium .support .decorators .Decorated ;
55
53
56
54
/**
@@ -66,9 +64,6 @@ public class Augmenter {
66
64
67
65
public Augmenter () {
68
66
Set <Augmentation <?>> augmentations = new HashSet <>();
69
- Stream .of (new AddWebStorage ())
70
- .forEach (provider -> augmentations .add (createAugmentation (provider )));
71
-
72
67
StreamSupport .stream (ServiceLoader .load (AugmenterProvider .class ).spliterator (), false )
73
68
.forEach (provider -> augmentations .add (createAugmentation (provider )));
74
69
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments