Github user JPercivall commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/1202#discussion_r87487455
  
    --- Diff: 
nifi-commons/nifi-utils/src/main/java/org/apache/nifi/stream/io/BufferedInputStream.java
 ---
    @@ -16,19 +16,445 @@
      */
     package org.apache.nifi.stream.io;
     
    +import java.io.IOException;
     import java.io.InputStream;
     
     /**
      * This class is a slight modification of the BufferedInputStream in the 
java.io package. The modification is that this implementation does not provide 
synchronization on method calls, which means
      * that this class is not suitable for use by multiple threads. However, 
the absence of these synchronized blocks results in potentially much better 
performance.
      */
    -public class BufferedInputStream extends java.io.BufferedInputStream {
    +public class BufferedInputStream extends InputStream {
    --- End diff --
    
    Can this be renamed to explicitly call out that this is not synchronized? 
This is a part of nifi-utils and I could easily see someone using it 
unknowingly because their IDE gives them the option. Or since it is part of 
nifi-utils that makes it public and can't be changed?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to