:trollface: 去掉transform

This commit is contained in:
VampireAchao
2022-10-18 09:52:10 +08:00
parent b47b531b4c
commit 680ad52f0c
5 changed files with 2 additions and 46 deletions

View File

@@ -704,18 +704,6 @@ public class AbstractEnhancedWrappedStreamTest {
return new Wrapper<>(source);
}
/**
* 转换为子类实现
*
* @param stream 流
* @return 子类实现
*/
@Override
public Wrapper<T> transform(final Stream<T> stream) {
this.stream = stream;
return this;
}
}
@Setter