java_io_BufferedReader


pattern_2 (3 partitions, 316 files)


java.io.BufferedReader.close


Cluster 0 (67 files, similarity: 0.912)

NativeScript_____android-runtime_____FileSystem
            if (buffReader != null) {
                buffReader.close();
            }
            
bmeike_____ProgrammingAndroid2Examples_____SearchLogic
            	if(br != null) {
            		br.close();
            	}
            
romario333_____opensudoku_____SdmImportTask
				if (br != null) br.close();
            

Cluster 2 (85 files, similarity: 0.854)

OpenRock_____OpenAM_____SMSEnhancedFlatFileObject
                try {
                    buff.close();
                } catch (IOException e) {
                    //ignored
                }
            
ParanoidAndroid_____android_frameworks_base_____SettingsBackupAgent
                try {
                    br.close();
                } catch (IOException e) {
                }
            
openhab_____openhab1-addons_____ExecuteCommandJob
            try {
                in.close();
            } catch (IOException ioe) {
            }
            

pattern_1 (2 partitions, 771 files)


java.io.BufferedReader.readLine


Cluster 0 (304 files, similarity: 0.812)

wzgiceman_____ALibrary_____AbFileUtil
            while ((line = bufReader.readLine()) != null) {
                    buffer.append(line);
            }
            
eclipse_____che_____DebuggerUtils
            while ((response = br.readLine()) != null) {
              responseData.append(response);
            }
            
r3gis3r_____CSipSimple_____SipProfileJson
            while ((line = buf.readLine()) != null) {
                contentBuf.append(line);
            }