Skip to content

Commit fcf4d96

Browse files
making getinstance abstract
1 parent 568fd4e commit fcf4d96

File tree

1 file changed

+1
-3
lines changed
  • core/src/main/java/com/flipkart/gjex/core/filter

1 file changed

+1
-3
lines changed

core/src/main/java/com/flipkart/gjex/core/filter/Filter.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ default void destroy() {}
3737
/**
3838
* Function for creating new instance of this Filter
3939
*/
40-
default Filter<Req, Res> getNewInstance() {
41-
return null;
42-
}
40+
Filter<Req, Res> getNewInstance();
4341

4442
/**
4543
* Call-back to process Request headers and Filter out processing of the next incoming Request Proto V3 body/message.

0 commit comments

Comments
 (0)