Skip to content

Commit

Permalink
refactor: org.openrewrite.staticanalysis.ExplicitInitialization
Browse files Browse the repository at this point in the history
  • Loading branch information
Bananeweizen committed Jan 19, 2025
1 parent 39c643c commit f0293ac
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ public class Auditor {
private IProgressMonitor mMonitor;

/** Add the check rule name to the message. */
private boolean mAddRuleName = false;
private boolean mAddRuleName;

/** Add the check module id to the message. */
private boolean mAddModuleId = false;
private boolean mAddModuleId;

/**
* Creates an auditor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class CheckConfiguration implements ICheckConfiguration {
private CheckstyleConfigurationFile mCheckstyleConfigurationFile;

/** Time stamp when the cached configuration file data expires. */
private long mExpirationTime = 0;
private long mExpirationTime;

/**
* Creates a check configuration instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public class RuleConfigurationEditDialog extends TitleAreaDialog {

private Map<String, Text> mCustomMessages;

private boolean mReadonly = false;
private boolean mReadonly;

/**
* Constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public class CheckstylePreferencePage extends PreferencePage implements IWorkben

private CheckConfigurationWorkingSetEditor mWorkingSetEditor;

private boolean mRebuildAll = false;
private boolean mRebuildAll;

/**
* Constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ private static final class ShellResizeSupportListener extends ShellAdapter
private String mDialogKey;

/** flag that indicates if the dialog was already initally activated. */
private boolean mInitialyActivated = false;
private boolean mInitialyActivated;

//
// constructors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ static final class CustomHashtable {

transient HashMapEntry[] elementData;

transient int firstSlot = 0;
transient int firstSlot;

transient int lastSlot = -1;

Expand Down

0 comments on commit f0293ac

Please sign in to comment.