예제 #1
0
파일: Peer.java 프로젝트: hilbix/i2p
 /**
  * Are we currently requesting the piece?
  *
  * @deprecated deadlocks
  * @since 0.8.1
  */
 boolean isRequesting(int p) {
   PeerState s = state;
   return s != null && s.isRequesting(p);
 }