File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
api/src/main/java/redux/api Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public interface Store<S> extends Dispatcher {
52
52
*
53
53
* @see <a href="http://redux.js.org/docs/Glossary.html#store-creator">http://redux.js.org/docs/Glossary.html#store-creator</a>
54
54
*/
55
- interface Creator < S > {
55
+ interface Creator {
56
56
57
57
/**
58
58
* Creates a store.
@@ -61,7 +61,7 @@ interface Creator<S> {
61
61
* @param initialState Initial state for the store
62
62
* @return The store
63
63
*/
64
- Store <S > create (Reducer <S > reducer , S initialState );
64
+ < S > Store <S > create (Reducer <S > reducer , S initialState );
65
65
66
66
}
67
67
@@ -70,15 +70,15 @@ interface Creator<S> {
70
70
*
71
71
* @see <a href="http://redux.js.org/docs/Glossary.html#store-enhancer">http://redux.js.org/docs/Glossary.html#store-enhancer</a>
72
72
*/
73
- interface Enhancer < S > {
73
+ interface Enhancer {
74
74
75
75
/**
76
76
* Composes a store creator to return a new, enhanced store creator.
77
77
*
78
78
* @param next The next store creator to compose
79
79
* @return The composed store creator
80
80
*/
81
- Creator < S > enhance (Creator < S > next );
81
+ Creator enhance (Creator next );
82
82
83
83
}
84
84
You can’t perform that action at this time.
0 commit comments