diff
stringlengths
38
1.78k
msg_token
stringlengths
9
190
<nb> public class Solo { } COMMENT - COMMENT + COMMENT COMMENT - COMMENT - COMMENT + COMMENT + COMMENT COMMENT COMMENT <nb> class ViewFetcher { } COMMENT - COMMENT + COMMENT COMMENT - COMMENT - COMMENT + COMMENT + COMMENT COMMENT COMMENT
Clarified javadoc for getButton in Solo and ViewFetcher
<nb> public class IBeacon { IBeacon iBeacon = new IBeacon ( ) ; - iBeacon . major = ( ( int ) scanData [ NUMBER0 ] & NUMBER1 ) * NUMBER2 + scanData [ NUMBER3 ] ; - iBeacon . minor = ( ( int ) scanData [ NUMBER4 ] & NUMBER1 ) * NUMBER2 + scanData [ NUMBER5 ] ; + iBeacon . major = ( scanData [ NUMBER0 ] & NUM...
fixed the major minor calculation
<nb> public class PooledByteBufAllocator extends AbstractByteBufAllocator { heapArenas = null ; } - if ( nHeapArena > NUMBER0 ) { + if ( nDirectArena > NUMBER0 ) { directArenas = newArenaArray ( nDirectArena ) ; for ( int i = NUMBER0 ; i < directArenas . length ; i ++ ) { directArenas [ i ] = new PoolAr...
Use correct value to disable enable direct arenas in PooledByteBufAllocator
<nb> public class StatsCursorFragment extends SherlockFragment implements LoaderManag } private void reloadLinearLayout ( ) { - if ( mLinearLayout == null || mAdapter == null ) + if ( getActivity ( ) == null || mLinearLayout == null || mAdapter == null ) return ; SINGLE <nb> public class StatsCursorTr...
Fixed NPEs in cursor fragments when detached from activity
<nb> public final class ResourceManager { } } + COMMENT java . util . Arrays . sort ( projects ) ; for ( Project project : projects ) {
Add comment which describes need the sort method call
<nb> public class EncoderEndpointTest { + base . getPath ( ) + STRING0 ) ; return container . connectToServer ( endpoint , uri ) ; - } }
Removing an empty line
<nb> public class SvnRepositoryConnector extends AbstractRepositoryConnector < SvnConne } - public boolean login ( String username , String password ) { - checkLoggedIn ( ) ; + public boolean login ( String username , String password ) { ISVNClientAdapter clientAdapter = getSvnClientAdapter ( ) ; clie...
allow the Svn and Sftp Connectors to perform login
<nb> import NAMESPACE ; @ jsonsubtypes ( value = { @ jsonsubtypes.type ( value = BinomialDistribution . class , name = STRING0 ) , @ jsonsubtypes.type ( value = NormalDistribution . class , name = STRING1 ) , + @ jsonsubtypes.type ( value = GaussianDistribution . class , name = STRING2 ) , @ jsonsubtypes.type...
Add json subtype for gaussian conf distribution deprecate
<nb> public class GenerateSourcesMojo extends AbstractAndroidMojo } return resourceFolders ; } - COMMENT + + COMMENT COMMENT COMMENT COMMENT <nb> public class GenerateSourcesMojo extends AbstractAndroidMojo return false ; } + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT private ...
Added javadoc for modified methods
<nb> public class PGL { gl . glClear ( GL . GL_COLOR_BUFFER_BIT | GL . GL_DEPTH_BUFFER_BIT | GL . GL_STENCIL_BUFFER_BIT ) ; firstFrame = false ; + drawable . swapBuffers ( ) ; } if ( capabilities . isFBO ( ) ) {
added buffer swap in Display to solve the garbage problem
<nb> public class Theories extends JUnit4ClassRunner { } . childBlock ( fTestMethod ) . evaluate ( ) ; } catch ( AssumptionViolatedException e ) { handleAssumptionViolation ( e ) ; - } catch ( CouldNotGenerateValueException e ) { - SINGLE } } <nb> public class Theories extends JUnit4ClassRunner { in...
Removed an unnecessary exception catch
<nb> COMMENT - COMMENT + COMMENT COMMENT COMMENT COMMENT <nb> import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; - import NAMESPACE ; COMMENT COMMENT <nb> public abstract class AbstractCacheManager implements CacheManager , Initializing public void afterPropert...
AbstractCacheManager accepts no caches defined allowing for EHCache default cache setup
<nb> public abstract class SeriesGuideExtension extends IntentService { COMMENT COMMENT COMMENT - COMMENT + COMMENT COMMENT COMMENT protected abstract void onRequest ( int episodeIdentifier , Episode episode ) ;
Name the thing by its name
<nb> public final class ChannelImpl implements Channel { COMMENT COMMENT public synchronized ChannelImpl shutdown ( ) { + if ( shutdown ) { + return this ; + } shutdown = true ; if ( activeTransport != null ) { activeTransport . stopAsync ( ) ;
Only run terminationRunnable once
<nb> public class ResultSetViewer extends Viewer implements IDataSourceProvider , ISpr public void setData ( List < Object [ ] > rows , boolean updateMetaData ) { + if ( spreadsheet . isDisposed ( ) ) { + return ; + } SINGLE this . closeEditors ( ) ; <nb> class ConnectionPageFinal extends ActiveWiza...
Connection settings save fix
<nb> public abstract class SocketReader implements Runnable { packet = new Message ( doc ) ; } catch ( IllegalArgumentException e ) { + Log . debug ( STRING0 , e ) ; SINGLE Message reply = new Message ( ) ; reply . setID ( doc . attributeValue ( STRING1 ) ) ; <nb> public abstract class SocketReader impl...
Added logging when receiving a malformed JID
<nb> - package NAMESPACE ; + package NAMESPACE ; import static NAMESPACE ; import static NAMESPACE ; import NAMESPACE ; + import NAMESPACE ; import NAMESPACE ; COMMENT
Move test to test folder where it belongs
<nb> package NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; + import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; <nb> import NAMESPACE ; import NAMESPACE ; - public class ChooseRepositoryActivity extends ActionBarActivity { + public class ChooseRepositoryActivity ex...
Removing deprecated class
<nb> public class HttpHeaders extends HashMap < String , String > { @ override public Set < Map . Entry < String , String > > entrySet ( ) { - return super . entrySet ( ) ; + throw new UnsupportedOperationException ( ) ; } @ override
Removed use of HttpHeaders entrySet
<nb> public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport { COMMENT COMMENT COMMENT + COMMENT COMMENT COMMENT COMMENT <nb> public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport { COMMENT COMMENT COMMENT - COMMENT + COMMENT COMMENT COMMENT COMMENT <nb> p...
Improve GDK Reference File eachLine and File eachFile
<nb> import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; + @ suppresswarnings ( STRING0 ) public class LaunchConfigBuilder { private final File baseDir ; <nb> public class LaunchConfigBuilder { private static class BlockingThreadFactory implements ThreadFactory { private final ThreadGroup thr...
Fix checkstyle problem
<nb> public class FS20Binding extends AbstractActiveBinding < FS20BindingProvider > } public void activate ( ) { - if ( StringUtils . isEmpty ( deviceName ) ) { - logger . error ( STRING0 ) ; - return ; - } logger . debug ( STRING1 ) ; - getCULHandler ( ) ; } private void setNewDeviceName ( Stri...
Cleaned up unnecessary error messages
<nb> public class BenchmarkSuite this . outputDirectory = checkNotNull ( outputDirectory , STRING0 ) ; } - private File createOutputFile ( String fileName ) + private static File createOutputFile ( String fileName ) throws IOException { File outputFile = new File ( fileName ) ;
Fix intellij warning
<nb> public class SpotLight extends Light { protected float spotInnerAngle = FastMath . QUARTER_PI / NUMBER0 ; protected float spotOuterAngle = FastMath . QUARTER_PI / NUMBER1 ; protected float spotRange = NUMBER2 ; - protected float invSpotRange = NUMBER3 / NUMBER2 ; + protected float invSpotRange = FLOAT0 /...
Fixed SpotLight default inititalisation for invSpotRange
<nb> public final class Main implements ActionListener { } - class PlainTextFilter extends FileFilter { + static class PlainTextFilter extends FileFilter { public boolean accept ( final File f ) { if ( f . getName ( ) . toLowerCase ( ) . endsWith ( STRING0 ) )
making inner class static
<nb> public class ByteBufferBackedChannelBuffer extends AbstractChannelBuffer { int readBytes = NUMBER0 ; - if ( ! buffer . isReadOnly ( ) && buffer . hasArray ( ) ) { + if ( buffer . hasArray ( ) ) { index += buffer . arrayOffset ( ) ; do { int localReadBytes = in . read ( buffer . array ( ) , index , ...
Removed redundant conditional
<nb> public class CUnitPlugin implements Plugin < Project > { testSuites . create ( suiteName , CUnitTestSuiteSpec . class , new Action < CUnitTestSuiteSpec > ( ) { @ override public void execute ( CUnitTestSuiteSpec testSuite ) { - DefaultCUnitTestSuiteSpec cunitTestSuite = ( DefaultCUnitTestSuiteSpec ) testSu...
Remove unnecessary casts of CUnitTestSuiteSpec in CUnitPlugin
<nb> public abstract class JSON implements JSONStreamAware , JSONAware { COMMENT COMMENT COMMENT - COMMENT COMMENT public static void writeJSONString ( Object object , Writer writer , SerializerFeature . . . features ) { writeJSONString ( object , writer , JSON . DEFAULT_GENERATE_FEATURE , features ) ;
fixed javadoc error
<nb> public class PythonScriptEngineService extends AbstractComponent implements Scri } @ override public String [ ] types ( ) { - return new String [ ] { STRING0 } ; + return new String [ ] { STRING0 , STRING1 } ; } @ override public String [ ] extensions ( ) {
add py as lang
<nb> public class CachedClass { } public int getSuperClassDistance ( ) { - synchronized ( getTheClass ( ) ) { - if ( distance == - NUMBER0 ) { - int distance = NUMBER1 ; - for ( Class klazz = getTheClass ( ) ; klazz != null ; klazz = klazz . getSuperclass ( ) ) { - distance ++ ; - } - this . distanc...
remove unneeded synchronization
<nb> package NAMESPACE ; import NAMESPACE ; import NAMESPACE ; - import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; <nb> import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; - import NAMESPACE ; import NAMESPACE ; - import NAMESPACE ; import ...
remove some unused code
<nb> public class JavaSourceProcessorTest extends BaseSourceProcessorTestCase { STRING0 , STRING0 , STRING0 , STRING0 , STRING0 , STRING0 , STRING0 , STRING0 , STRING0 , STRING0 , STRING0 , STRING0 , - STRING0 , STRING0 , STRING0 + STRING0 , STRING0 } , new Integer [ ] { - NUMBER0 , NUMBER1 , NUMBER2 , ...
Fix broken test
<nb> public abstract class LanguagePerFileMappings < T > implements PersistentStateCompo } @ nullable - public T getImmediateMapping ( final VirtualFile file ) { + public T getImmediateMapping ( @ nullable final VirtualFile file ) { synchronized ( myMappings ) { return myMappings . get ( file ) ; }
getImmediateMapping method accepts null
<nb> import NAMESPACE ; COMMENT COMMENT - public abstract class CuratorDiscoveryConfig + public class CuratorDiscoveryConfig { @ jsonproperty private String path = null ;
Switch CuratorDiscoveryConfig to not be an abstract class cause Jackson cannot instantiate them
<nb> public class TransportShardMultiPercolateAction extends TransportShardSingleOper try { responseItem . response = percolatorService . percolate ( item . request ) ; } catch ( Throwable e ) { - logger . trace ( STRING0 , e , request . index ( ) , request . shardId ( ) ) ; + logger . debug ( STRING0 , e , r...
Logging shard level multi percolate errors under debug rather than trace
<nb> import NAMESPACE ; import static NAMESPACE ; import static NAMESPACE ; - import static NAMESPACE ; import static NAMESPACE ; COMMENT <nb> import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; + import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMES...
Removing usage of deprecated Mockito annotation
<nb> public abstract class ComponentManagerImpl extends UserDataHolderBase implements private int myComponentConfigCount ; @ suppresswarnings ( STRING0 ) private int myInstantiatedComponentCount = - NUMBER0 ; + private boolean myComponentsCreated ; private final List < BaseComponent > myBaseComponents = new...
correct components created flag
<nb> public class EnglishGrammaticalRelations { STRING0 , STRING1 , STRING2 , SINGLE + SINGLE + STRING3 } ) ; public static class NounCompoundModifierGRAnnotation extends GrammaticalRelationAnnotation { } <nb> public class EnglishGrammaticalRelations { SINGLE SINGLE STRING4 , - STRING5 + SIN...
Split the her daughter jordan tregex into pieces with and without NNP
<nb> public class ImpermanentGraphDatabase extends EmbeddedGraphDatabase private static boolean TRACK_UNCLOSED_DATABASE_INSTANCES = false ; private static final Map < File , Exception > startedButNotYetClosed = new ConcurrentHashMap < File , Exception > ( ) ; - static final String PATH = STRING0 ; + static fi...
Fixed default path to be under target
<nb> public class SdkConfigurationUtil { VirtualFile suggestedDir = suggestedPath == null ? null : LocalFileSystem . getInstance ( ) . findFileByPath ( FileUtil . toSystemIndependentName ( suggestedPath ) ) ; - FileChooser . chooseFiles ( descriptor , project , suggestedDir , new Consumer < List < VirtualFile >...
allow reacting on cancel when creating sdk
<nb> public final class Constants { public static final String MESOS_RESOURCE_DISK = STRING0 ; public static final String MESOS_RESOURCE_PORTS = STRING1 ; - public static final long SECOND_NANO = NUMBER0 ; + public static final long SECOND_NANO = NUMBER1 ; public static final int SECOND_MS = NUMBER2 ; pub...
Add L to long constant
<nb> public class IpnbFileEditor extends UserDataHolderBase implements FileEditor { new CellSelectionListener ( ) { @ override public void selectionChanged ( @ notnull IpnbPanel ipnbPanel , boolean byMouse ) { - if ( myCellTypeCombo == null || byMouse ) return ; + if ( myCellTypeCombo == null ) return ; upd...
Changing style works only after closing the editor
<nb> package NAMESPACE ; - import NAMESPACE ; - import NAMESPACE ; import NAMESPACE ;
Remove import that was accidentally added
<nb> public final class PrintSpoolerService extends Service { final int printJobCount = mPrintJobs . size ( ) ; for ( int i = NUMBER0 ; i < printJobCount ; i ++ ) { PrintJobInfo printJob = mPrintJobs . get ( i ) ; - if ( isActiveState ( printJob . getState ( ) ) + if ( isActiveState ( printJob . getState ( ) ...
Add missing null pointer check in PrintSpoolerService
<nb> public class TelephonyManager { COMMENT COMMENT COMMENT - public static final boolean EMERGENCY_ASSISTANCE_ENABLED = false ; + public static final boolean EMERGENCY_ASSISTANCE_ENABLED = true ; COMMENT COMMENT
Flip EMERGENCY_ASSISTANCE_ENABLED to true
<nb> public class IndicesQueryCacheTests extends ElasticsearchIntegrationTest { SINGLE final SearchResponse r1 = client ( ) . prepareSearch ( STRING0 ) . setSize ( NUMBER0 ) . setSearchType ( SearchType . QUERY_THEN_FETCH ) . addAggregation ( dateHistogram ( STRING1 ) . field ( STRING2 ) . timeZone ( STRING3 ) . ...
Remove leftover println
<nb> abstract class JsonObject { COMMENT COMMENT COMMENT + @ suppresswarnings ( STRING0 ) public < T > T get ( String name , Class < T > clazz ) { Object value = parameters . get ( name ) ; try {
Revert Remove unneded supressWarning annotation
<nb> public class SampleFactory implements SampleSource { public SampleFactory ( Graph graph ) { this . graph = graph ; - this . setSearchRadiusM ( NUMBER0 ) ; + this . setSearchRadiusM ( NUMBER1 ) ; } private Graph graph ;
increase sample linking distance so things are not left unlinked now that we look for nodes not edges
<nb> final class TransactionImpl implements Transaction , TransactionSupport { futures . add ( f ) ; } } - waitWithDeadline ( futures , timeoutMillis , TimeUnit . MILLISECONDS , FutureUtil . RETHROW_EVERYTHING ) ; + waitWithDeadline ( futures , timeoutMillis , TimeUnit . MILLISECONDS , FutureUtil . RETHROW_TR...
add missing transaction exception handler
<nb> package NAMESPACE ; import NAMESPACE ; import NAMESPACE ; - import NAMESPACE ; + import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; <nb> import NAMESPACE ; COMMENT COMMENT COMMENT - public abstract class AbstractMvcPsiNodeDescriptor extends AbstractPsiBasedNode < ...
make AbstractMvcPsiNodeDescriptor extend BasePsiNode
<nb> + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT package NAMESPACE ; import NAMESPACE ;
Added license header
<nb> public abstract class DebuggerUtilsEx extends DebuggerUtils { DebugProcessImpl process ) { PsiClass containingClass = psiMethod . getContainingClass ( ) ; try { - return containingClass != null && Objects . equals ( containingClass . getQualifiedName ( ) , className ) && + return containingClass != null ...
fixed incorrect smart targets for inner classes
<nb> package NAMESPACE ; import NAMESPACE ; + import NAMESPACE ; + import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; <nb> class LazyEntryView < K , V > implements EntryView < K , V > { } public V getValue ( ) { - if ( validMergePolicyForValueNullCheck ( mergePolicy ) ...
updated method name to returnRawData
<nb> public interface PsiComment extends PsiElement { COMMENT COMMENT IElementType getTokenType ( ) ; + + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + interface BlockFormatting { } } <nb> abstract class CodeStyleManagerRunnable < T > { protected abstract T doPerform ( int offs...
block comments indentation review CR OC Anton
<nb> public class MockLibraryUtil { @ notnull private static Class < ? > getCompilerClass ( ) throws MalformedURLException , ClassNotFoundException { - if ( compilerClass == null ) { File kotlinCompilerJar = new File ( PathUtil . getKotlinPathsForDistDirectory ( ) . getLibPath ( ) , STRING0 ) ; - URLClass...
Add kotlin runtime jar to the class loader when invoking compiler
<nb> import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; - import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; <nb> public class PydevConsoleCommunication extends AbstractConsoleCommunication impl return execRequestInput ( ) ; } else { - throw new NotImplementedExcep...
don t use Sun internal class
<nb> import NAMESPACE ; COMMENT SINGLE SINGLE - public final class Downloads implements BaseColumns { + public final class Downloads { private Downloads ( ) { } COMMENT
Remove the BaseColumns inheritance
<nb> public class OHazelcastDistributedDatabase implements ODistributedDatabase { final IQueue queue = entry . getValue ( ) ; if ( queue != null ) { - System . out . println ( String . format ( STRING0 , getLocalNodeName ( ) , entry . getKey ( ) , queue . size ( ) ) ) ; - if ( queueMaxSize > NUMBER0 && queu...
Removed debug msg
<nb> public class RxTest extends RandomData { final List < Person > people = new ArrayList < > ( ) ; data . select ( Person . class ) . limit ( NUMBER0 ) . get ( ) . toObservable ( ) - . observeOn ( Schedulers . newThread ( ) ) - . subscribeOn ( Schedulers . immediate ( ) ) . subscribe ( new Action1 < Perso...
adjust test for intermittent failure
<nb> import NAMESPACE ; import static NAMESPACE ; - public final class AssignmentWithType extends Expression implements WithKey { + public final class AssignmentWithType extends Expression implements WithKey { private final String type ; private final String key ; private final String value ; <nb> p...
use different expression type for external assignments
<nb> package NAMESPACE ; import NAMESPACE ; - import NAMESPACE ; - import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; <nb> public final class OrthographicCamera { COMMENT COMMENT public float getScreenToWorldX ( float screenX ) { + screenX = screenX / Gdx . graphics . ...
fix getScreenToWorldX and getScreenToWorldY return wrong translation if screensize
<nb> import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; + import static NAMESPACE ; import static NAMESPACE ; import static NAMESPACE ; import static NAMESPACE ; <nb> public class AttachmentProcessorFactoryTests extends ESTestCase { factory . create ( config ) ; fail ( STRING0 ) ; } catch ( ...
Fix AttachmentProcessorFactoryTests to only check for existing fields
<nb> public class Accounts extends K9ListActivity implements OnItemClickListener { new String [ ] { STRING0 , STRING1 } , new String [ ] { STRING2 , STRING3 } , new String [ ] { STRING4 , STRING5 } , - new String [ ] { STRING6 , STRING7 } + new String [ ] { STRING6 , STRING7 } , + new String [ ] { STRING8 ,...
Add ckChangeLog to about dialog
<nb> public class DefaultRecordStore implements RecordStore { SINGLE Collection < Object > keysObject = new ArrayList < Object > ( keysToDelete . size ( ) ) ; for ( Data key : keysToDelete ) { - SINGLE - removeIndex ( key ) ; keysObject . add ( mapService . toObject ( key ) ) ; } <nb> public class Def...
Fixed index removal
<nb> public class DBTCPConnector implements DBConnector { boolean secondaryOk = ! ( readPref == ReadPreference . primary ( ) ) ; _checkClosed ( ) ; - if ( ! secondaryOk ) + SINGLE + if ( ! secondaryOk || getReplicaSetStatus ( ) == null ) checkMaster ( false , ! secondaryOk ) ; final MyPort mp = _myPor...
Fixing a regression introduced in the previous commit for this issue
<nb> public class FileSystemUtils { } } - private static ByteSource asByteSource ( final Path path ) { + COMMENT + COMMENT + COMMENT + public static ByteSource asByteSource ( final Path path ) { return new ByteSource ( ) { @ override public InputStream openStream ( ) throws IOException { return pa...
Expose the asByteSource method in FileSystemUtils
<nb> public class EnglishTaggerTest extends TestCase { } public void testTagger ( ) throws IOException { - myAssert ( STRING0 , STRING1 ) ; - myAssert ( STRING2 , STRING3 ) ; - myAssert ( STRING4 , STRING5 ) ; + myAssert ( STRING0 , STRING6 ) ; + myAssert ( STRING2 , STRING7 ) ; + myAssert ( STRING4 ,...
changed test for new dictionary
<nb> class ShowTOCAction extends FBAndroidAction { } static boolean isTOCAvailable ( FBReaderApp reader ) { - return - reader != null && - reader . Model != null && - reader . Model . TOCTree != null && - reader . Model . TOCTree . hasChildren ( ) ; + if ( reader == null ) { + return false ; + } ...
fixed possible NPE
<nb> import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; - import NAMESPACE ; - import NAMESPACE ; import NAMESPACE ; <nb> public class PersistenceInjectionTests extends AbstractEntityManagerFactoryBeanT public static class DefaultVendorSpecificPrivatePersistenceContextField { @ persistence...
Suppress deprecation warning in PersistenceInjectionTests
<nb> public class ReaderPostDetailFragment extends Fragment showToolbar ( true ) ; showFooter ( true ) ; } + + trackRelatedPostsIfShowing ( ) ; } private void showToolbar ( boolean show ) {
Returned missing call to trackRelatedPostsIfShowing
<nb> public abstract class BaseCrashReportDialog extends Activity { if ( ACRA . DEV_LOGGING ) ACRA . log . d ( LOG_TAG , STRING0 ) ; cancelReports ( ) ; finish ( ) ; - } else if ( ( sConfig instanceof ACRAConfiguration ) && ( sReportFile instanceof File ) && ( sException instanceof Throwable ) ) { + } else if...
allow null exception in dialog
<nb> public class NetworkController extends BroadcastReceiver { combinedActivityIconId = mMobileActivityIconId ; combinedSignalIconId = mDataSignalIconId ; SINGLE mContentDescriptionCombinedSignal = mContentDescriptionDataType ; + } else { + mobileLabel = mHasMobileDataFeature ? + context . getString ( R . ...
Always show appropriate mobile service label
<nb> public final class TvInputManager { mPendingEvents . removeAt ( index ) ; if ( timeout ) { - Log . w ( TAG , STRING0 + Log . w ( TAG , STRING1 + INPUT_SESSION_NOT_RESPONDING_TIMEOUT + STRING2 + mToken ) ; } else { mHandler . removeMessages ( InputEventHandler . MSG_TIMEOUT_INPUT_EVENT , p ) ;
Fix a typo
<nb> public class AmbrosePigProgressNotificationListener implements PigProgressNotifi return ; } + mapReduceHelper . addMapReduceJobState ( job , pigConfig . getJobClient ( ) ) ; addCompletedJobStats ( node . getJob ( ) , stats ) ; AmbroseUtils . pushEvent ( statsWriteService , scriptId , new Event . JobFai...
update mapreduce state even on completion and failure for pig
<nb> import NAMESPACE ; COMMENT COMMENT COMMENT + @ checkreturnvalue @ gwtcompatible public final class Collections2 { private Collections2 ( ) { } <nb> public final class Collections2 { COMMENT SINGLE SINGLE - @ checkreturnvalue public static < E > Collection < E > filter ( Collection < E >...
Add CheckReturnValue to Collections2
<nb> public class LocalZooKeeperCluster private final PortPolicy serverSecondPortPolicy ; private final Collection < ZooKeeperServerWrapper > wrappers = new ArrayList < ZooKeeperServerWrapper > ( ) ; + private Collection < String > serversConfig ; public LocalZooKeeperCluster ( int size , DataDirectoryPolic...
Added a method for getting the zoo keeper servers config
<nb> public class HTTP { } COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + static public void sendHttpPutRequest ( String url ) { + HttpUtil . executeUrl ( STRING0 , url , NUMBER0 ) ; + } + + COMMENT COMMENT COMMENT COMMENT <nb> public class HTTP { HttpUtil . executeUrl ( STRING1 , u...
added missing http operations put delete
<nb> public abstract class BinaryMemcacheDecoder < M extends BinaryMemcacheMessage < H > , return ; } - currentKey = readBytes ( ctx . alloc ( ) , in , keyLength ) . toString ( CharsetUtil . UTF_8 ) ; + currentKey = in . toString ( in . readerIndex ( ) , keyLength , CharsetUtil . UTF_8 ) ; + in . skipBytes ...
Fix a buffer leak in BinaryMemcacheDecoder
<nb> public class RecentsActivity extends Activity implements RecentsView . RecentsView @ override public void onBackPressed ( ) { + SINGLE + if ( mConfig . debugModeEnabled ) return ; + SINGLE if ( mFullScreenOverlayView == null || ! mFullScreenOverlayView . cancelAnimateOnEnterRecents ( mFinishRunna...
Adding back behavior test
<nb> public class RecyclerViewDragDropManager { COMMENT COMMENT COMMENT - public boolean getInitiateOnLongPress ( ) { + public boolean isInitiateOnLongPressEnabled ( ) { return mInitiateOnLongPress ; } <nb> public class RecyclerViewDragDropManager { COMMENT COMMENT COMMENT - public boolean get...
Rename some RecyclerViewDragDropManager methods
<nb> public class TreeViewer extends JComponent { @ notnull protected static JDialog showInDialog ( final TreeViewer viewer ) { final JDialog dialog = new JDialog ( ) ; + dialog . setTitle ( STRING0 ) ; SINGLE final Container mainPane = new JPanel ( new BorderLayout ( NUMBER0 , NUMBER0 ) ) ;
Add a default title to the TreeViewer dialog
<nb> import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; + import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; <nb> public class GroovyCoreEnvironment { CoreApplicationEnvironment . registerExtensionPoint ( Extensions . getRootArea ( ) , ReadWriteAcces...
initialize and register stub serializers
<nb> public class InjectionsSettingsUI implements Configurable { private List < BaseInjection > getSelectedInjections ( ) { final ArrayList < BaseInjection > toRemove = new ArrayList < BaseInjection > ( ) ; for ( int row : myInjectionsTable . getSelectedRows ( ) ) { - toRemove . add ( myInjectionsTable . getIte...
clicking on entry opens wrong detail editor
<nb> public class LocalNotification extends CordovaPlugin { } COMMENT + COMMENT + COMMENT + @ override + public void onDestroy ( ) { + deviceready = false ; + isInBackground = true ; + } + + COMMENT COMMENT COMMENT COMMENT
Set device as not ready onDestroy
<nb> public class WorkspaceAndProjectGenerator { } private void addTestNodeAndDependencies ( - TargetNode < ? > testBundleBuildTarget , + TargetNode < ? > testBundleTargetNode , ImmutableSet . Builder < TargetNode < ? > > recursiveTestTargetNodesBuilder , ImmutableSet . Builder < TargetNode < ? > > ordere...
Remove an unnecessary target graph node lookup
<nb> package NAMESPACE ; import NAMESPACE ; + import NAMESPACE ; - import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; <nb> public class ShadowValueAnimator extends ShadowAnimator { @ resetter public static void reset ( ) { ValueAnimator . clearAllAnimations ( ) ; + COMMENT + COMMENT ...
Fix test pollution in ShadowValueAnimator
<nb> public class OCommandExecutorSQLLiveSelect extends OCommandExecutorSQLSelect imp } private boolean matchesFilters ( OIdentifiable value ) { - return true ; SINGLE + if ( this . compiledFilter == null || this . compiledFilter . getRootCondition ( ) == null ) { + return true ; + } + if ( ! ( value in...
finished filter implementation on live query
<nb> import NAMESPACE ; import NAMESPACE ; import NAMESPACE ; - import NAMESPACE ; - import NAMESPACE ; - import NAMESPACE ; - import NAMESPACE ; + import NAMESPACE ; COMMENT COMMENT COMMENT public class GroovyClassFinder implements ProjectComponent , PsiElementFinder { private Project myPro...
need weak map
<nb> public class DiagnosticGroups { CheckSuspiciousCode . SUSPICIOUS_SEMICOLON , CheckSuspiciousCode . SUSPICIOUS_COMPARISON_WITH_NAN , CheckSuspiciousCode . SUSPICIOUS_IN_OPERATOR , - CheckSuspiciousCode . SUSPICIOUS_INSTANCEOF_LEFT_OPERAND ) ; + CheckSuspiciousCode . SUSPICIOUS_INSTANCEOF_LEFT_OPERAND , ...
Add TypeCheck DETERMINISTIC_TEST check to suspiciousCode group
<nb> public class StickyListHeadersListView extends FrameLayout { private int getHeaderOverlap ( int position ) { boolean isStartOfSection = isStartOfSection ( position ) ; if ( ! isStartOfSection ) { - View header = mAdapter . getHeaderView ( position , null , mList ) ; - header . setLayoutParams ( new ViewG...
Revert Fixes NPE in smoothScrollToPosition methods
<nb> public class NotesAdapter extends RecyclerView . Adapter < NotesAdapter . NoteViewHold } public void replaceNote ( Note newNote ) { - int position = getPositionForNoteUnfiltered ( newNote . getId ( ) ) ; - mNotes . set ( position , newNote ) ; + if ( newNote != null ) { + int position = getPositionFo...
added null check within method
<nb> public class FlexibleDateConverterTest { assertTrue ( c . convert ( STRING0 ) . toString ( ) . startsWith ( STRING1 ) ) ; assertTrue ( c . convert ( STRING2 ) . toString ( ) . startsWith ( STRING3 ) ) ; assertTrue ( c . convert ( STRING4 ) . toString ( ) . startsWith ( STRING5 ) ) ; + assertTrue ( c . conv...
add another flexdate testcase from an actual cisco router messages
<nb> import NAMESPACE ; COMMENT COMMENT COMMENT - COMMENT + COMMENT COMMENT COMMENT public class RussianPartialPosTagFilter extends PartialPosTagFilter {
ru remove experimental comment
<nb> + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + package NAMESPACE ; import NAMESPACE ;
added missing license header
<nb> import NAMESPACE ; @ retention ( RetentionPolicy . RUNTIME ) @ target ( { ElementType . TYPE , ElementType . METHOD } ) public @ interface Bombed { - int year ( ) default NUMBER0 ; + int year ( ) default NUMBER1 ; @ jdkconstants.calendarmonth int month ( ) ; int day ( ) ; int time ( ) default NUMBE...
Advance Bombed tests default year value
<nb> class TypeCollector { return ; } type = getElementType ( type ) ; - if ( allTypes . containsKey ( type . getKey ( ) ) || type . isPrimitive ( ) ) { + if ( allTypes . containsKey ( type . getKey ( ) ) || type . isPrimitive ( ) || type . isRawType ( ) ) { return ; } if ( hasNestedWildcard ( type ) ) ...
Ignore raw types in the cycle finder
<nb> public class CompileUnit { STRING0 ; } } else { - txt += STRING1 + nodeSource . getName ( ) + STRING2 + storedSource . getName ( ) + STRING3 + node . getName ( ) + STRING4 ; + txt += STRING1 + nodeSource . getName ( ) + STRING2 + storedSource . getName ( ) + STRING5 + node . getName ( ) + STRING4 ; } ...
Revert Revert Improve the grammar of a compiler error message
<nb> public interface TreeTransformer { COMMENT COMMENT COMMENT - public Tree transformTree ( Tree t ) ; + Tree transformTree ( Tree t ) ; } <nb> package NAMESPACE ; COMMENT COMMENT - COMMENT - COMMENT - COMMENT + COMMENT + COMMENT + COMMENT COMMENT COMMENT COMMENT <nb> public ...
Don t need public on interface methods
<nb> public class WalletTool { SINGLE SINGLE peers . broadcastTransaction ( t ) . get ( ) ; + if ( peers . getMinBroadcastConnections ( ) == NUMBER0 ) { + SINGLE + SINGLE + Thread . sleep ( NUMBER1 ) ; + } System . out . println ( t . getHashAsString ( ) ) ; } catch ( BlockStoreException e ) { thr...
Add crap WalletTool hack to work around issue with Netty
<nb> public class FirstWizardPage { this . emailField . getDocument ( ) . addDocumentListener ( this ) ; this . rememberPassBox . setSelected ( true ) ; + this . rememberPassBox . setOpaque ( false ) ; this . existingAccountLabel . setForeground ( Color . RED ) ;
Remove opaque background from Remember Password checkbox