コード例 #1
0
ファイル: GuardBuilder.java プロジェクト: projectodd/rephract
 public GuardBuilder drop(int index, int count) {
   binder = binder.drop(index, count);
   return this;
 }
コード例 #2
0
ファイル: GuardBuilder.java プロジェクト: projectodd/rephract
 public GuardBuilder drop(int index) {
   binder = binder.drop(index);
   return this;
 }