File tree Expand file tree Collapse file tree
src/server/tracker/inspector Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9292 }
9393
9494 #[ inline]
95- fn poll_flush ( self : Pin < & mut Self > , _cx : & mut task:: Context < ' _ > ) -> Poll < io:: Result < ( ) > > {
96- Poll :: Ready ( Ok ( ( ) ) )
95+ fn poll_flush ( self : Pin < & mut Self > , cx : & mut task:: Context < ' _ > ) -> Poll < io:: Result < ( ) > > {
96+ self . project ( ) . inner . poll_flush ( cx )
9797 }
9898
9999 #[ inline]
Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ where
101101 }
102102
103103 #[ inline]
104- fn poll_flush ( self : Pin < & mut Self > , _cx : & mut task:: Context < ' _ > ) -> Poll < io:: Result < ( ) > > {
105- Poll :: Ready ( Ok ( ( ) ) )
104+ fn poll_flush ( self : Pin < & mut Self > , cx : & mut task:: Context < ' _ > ) -> Poll < io:: Result < ( ) > > {
105+ self . project ( ) . inner . poll_flush ( cx )
106106 }
107107
108108 #[ inline]
Original file line number Diff line number Diff line change 8080 }
8181
8282 #[ inline]
83- fn poll_flush ( self : Pin < & mut Self > , _cx : & mut task:: Context < ' _ > ) -> Poll < io:: Result < ( ) > > {
84- Poll :: Ready ( Ok ( ( ) ) )
83+ fn poll_flush ( self : Pin < & mut Self > , cx : & mut task:: Context < ' _ > ) -> Poll < io:: Result < ( ) > > {
84+ self . project ( ) . inner . poll_flush ( cx )
8585 }
8686
8787 #[ inline]
You can’t perform that action at this time.
0 commit comments