Skip to content

Commit

Permalink
redundant internal modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie-mh committed Aug 26, 2023
1 parent 0738f74 commit 6fdaeda
Show file tree
Hide file tree
Showing 91 changed files with 91 additions and 91 deletions.
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/AboutActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
namespace AuthenticatorPro.Droid.Activity
{
[Activity]
internal class AboutActivity : BaseActivity
public class AboutActivity : BaseActivity
{
private readonly IAssetProvider _assetProvider;

Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/AsyncActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace AuthenticatorPro.Droid.Activity
{
internal abstract class AsyncActivity : BaseActivity, IDisposable
public abstract class AsyncActivity : BaseActivity, IDisposable
{
private readonly SemaphoreSlim _onResumeLock;
private bool _isDisposed;
Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/BaseActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace AuthenticatorPro.Droid.Activity
{
internal abstract class BaseActivity : AppCompatActivity
public abstract class BaseActivity : AppCompatActivity
{
private readonly int _layout;
private PreferenceWrapper _preferences;
Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/CategoriesActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
namespace AuthenticatorPro.Droid.Activity
{
[Activity]
internal class CategoriesActivity : SensitiveSubActivity
public class CategoriesActivity : SensitiveSubActivity
{
private readonly ICategoryView _categoryView;
private readonly ICategoryService _categoryService;
Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/ErrorActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
namespace AuthenticatorPro.Droid.Activity
{
[Activity]
internal class ErrorActivity : BaseActivity
public class ErrorActivity : BaseActivity
{
private string _exception;

Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/GuideActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
namespace AuthenticatorPro.Droid.Activity
{
[Activity]
internal class GuideActivity : BaseActivity
public class GuideActivity : BaseActivity
{
public GuideActivity() : base(Resource.Layout.activityGuide)
{
Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/IconPacksActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
namespace AuthenticatorPro.Droid.Activity
{
[Activity]
internal class IconPacksActivity : SensitiveSubActivity
public class IconPacksActivity : SensitiveSubActivity
{
private const int RequestAdd = 0;

Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/IntroActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
namespace AuthenticatorPro.Droid.Activity
{
[Activity]
internal class IntroActivity : BaseActivity
public class IntroActivity : BaseActivity
{
private int _pageCount;
private ViewPager2 _pager;
Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/MainActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ namespace AuthenticatorPro.Droid.Activity
ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize)]
[IntentFilter(new[] { Intent.ActionView }, Categories = new[] { Intent.CategoryDefault, Intent.CategoryBrowsable },
DataSchemes = new[] { "otpauth", "otpauth-migration" })]
internal class MainActivity : AsyncActivity, IOnApplyWindowInsetsListener
public class MainActivity : AsyncActivity, IOnApplyWindowInsetsListener
{
private const int PermissionCameraCode = 0;

Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/ScanActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
namespace AuthenticatorPro.Droid.Activity
{
[Activity]
internal class ScanActivity : BaseActivity
public class ScanActivity : BaseActivity
{
private PreviewView _previewView;
private ICamera _camera;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace AuthenticatorPro.Droid.Activity
{
internal abstract class SensitiveSubActivity : BaseActivity
public abstract class SensitiveSubActivity : BaseActivity
{
protected SensitiveSubActivity(int layout) : base(layout)
{
Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Activity/SettingsActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
namespace AuthenticatorPro.Droid.Activity
{
[Activity]
internal class SettingsActivity : SensitiveSubActivity, ISharedPreferencesOnSharedPreferenceChangeListener
public class SettingsActivity : SensitiveSubActivity, ISharedPreferencesOnSharedPreferenceChangeListener
{
private readonly IAuthenticatorService _authenticatorService;

Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/AutoBackupWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

namespace AuthenticatorPro.Droid
{
internal class AutoBackupWorker : Worker
public class AutoBackupWorker : Worker
{
public const string Name = "autobackup";

Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/BaseApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace AuthenticatorPro.Droid
#else
[Application(Debuggable = false, TaskAffinity = "")]
#endif
internal class BaseApplication : Application, ILifecycleObserver
public class BaseApplication : Application, ILifecycleObserver
{
public bool AutoLockEnabled { get; set; }
public bool PreventNextAutoLock { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace AuthenticatorPro.Droid.Callback
{
internal class ActivityResultCallback : Object, IActivityResultCallback
public class ActivityResultCallback : Object, IActivityResultCallback
{
public void OnActivityResult(Object obj)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace AuthenticatorPro.Droid.Callback
{
internal class AuthenticationCallback : BiometricPrompt.AuthenticationCallback
public class AuthenticationCallback : BiometricPrompt.AuthenticationCallback
{
public event EventHandler<ErrorEventArgs> Errored;
public event EventHandler Failed;
Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Callback/PageChangeCallback.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace AuthenticatorPro.Droid.Callback
{
internal class PageChangeCallback : ViewPager2.OnPageChangeCallback
public class PageChangeCallback : ViewPager2.OnPageChangeCallback
{
public event EventHandler<int> PageScrollStateChanged;
public event EventHandler<PageScrollEventArgs> PageScrolled;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace AuthenticatorPro.Droid.Callback
{
internal class ReorderableListTouchHelperCallback : ItemTouchHelper.Callback
public class ReorderableListTouchHelperCallback : ItemTouchHelper.Callback
{
private const int DragElevationDp = 8;

Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Database.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace AuthenticatorPro.Droid
{
internal class Database : IAsyncDisposable
public class Database : IAsyncDisposable
{
public enum Origin
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

namespace AuthenticatorPro.Droid.Interface.Adapter
{
internal class AuthenticatorListAdapter : RecyclerView.Adapter, IReorderableListAdapter
public class AuthenticatorListAdapter : RecyclerView.Adapter, IReorderableListAdapter
{
private const int MaxProgress = 10000;
private const int CounterCooldownSeconds = 10;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace AuthenticatorPro.Droid.Interface.Adapter
{
internal class CategoryListAdapter : RecyclerView.Adapter, IReorderableListAdapter
public class CategoryListAdapter : RecyclerView.Adapter, IReorderableListAdapter
{
private readonly ICategoryView _categoryView;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace AuthenticatorPro.Droid.Interface.Adapter
{
internal class CategoryMenuListAdapter : RecyclerView.Adapter
public class CategoryMenuListAdapter : RecyclerView.Adapter
{
private readonly Context _context;
private readonly ICategoryView _categoryView;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace AuthenticatorPro.Droid.Interface.Adapter
{
internal class DefaultIconListAdapter : RecyclerView.Adapter
public class DefaultIconListAdapter : RecyclerView.Adapter
{
private readonly Context _context;
private readonly IDefaultIconView _defaultIconView;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace AuthenticatorPro.Droid.Interface.Adapter
{
internal interface IReorderableListAdapter
public interface IReorderableListAdapter
{
public void MoveItemView(int oldPosition, int newPosition);
public void OnMovementStarted();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace AuthenticatorPro.Droid.Interface.Adapter
{
internal class IconPackEntryListAdapter : RecyclerView.Adapter
public class IconPackEntryListAdapter : RecyclerView.Adapter
{
private readonly IIconPackEntryView _iconPackEntryView;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace AuthenticatorPro.Droid.Interface.Adapter
{
internal class IconPackListAdapter : RecyclerView.Adapter
public class IconPackListAdapter : RecyclerView.Adapter
{
private readonly IIconPackView _iconPackView;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace AuthenticatorPro.Droid.Interface.Adapter
{
internal class IntroPagerAdapter : FragmentStateAdapter
public class IntroPagerAdapter : FragmentStateAdapter
{
public IntroPagerAdapter(FragmentActivity activity, int pageCount) : base(activity)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace AuthenticatorPro.Droid.Interface.Adapter
{
internal class SheetMenuAdapter : RecyclerView.Adapter
public class SheetMenuAdapter : RecyclerView.Adapter
{
private readonly List<SheetMenuItem> _items;

Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Interface/CustomIconDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace AuthenticatorPro.Droid.Interface
{
internal class CustomIconDecoder : ICustomIconDecoder
public class CustomIconDecoder : ICustomIconDecoder
{
public async Task<CustomIcon> DecodeAsync(byte[] rawData, bool shouldPreProcess)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class AboutBottomSheet : BottomSheet
public class AboutBottomSheet : BottomSheet
{
public AboutBottomSheet() : base(Resource.Layout.sheetMenu, Resource.String.about)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class AddAuthenticatorBottomSheet : InputAuthenticatorBottomSheet
public class AddAuthenticatorBottomSheet : InputAuthenticatorBottomSheet
{
public AddAuthenticatorBottomSheet() : base(Resource.Layout.sheetAddAuthenticator, Resource.String.enterKey)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class AddMenuBottomSheet : BottomSheet
public class AddMenuBottomSheet : BottomSheet
{
public AddMenuBottomSheet() : base(Resource.Layout.sheetMenu, Resource.String.add)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class AssignCategoriesBottomSheet : BottomSheet
public class AssignCategoriesBottomSheet : BottomSheet
{
private readonly ICategoryView _categoryView;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class AssignCategoryEntriesBottomSheet : BottomSheet
public class AssignCategoryEntriesBottomSheet : BottomSheet
{
private readonly IAuthenticatorView _authenticatorView;
private readonly ICustomIconView _customIconview;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class AuthenticatorMenuBottomSheet : BottomSheet
public class AuthenticatorMenuBottomSheet : BottomSheet
{
private AuthenticatorType _type;
private long _counter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class AutoBackupSetupBottomSheet : BottomSheet
public class AutoBackupSetupBottomSheet : BottomSheet
{
private PreferenceWrapper _preferences;
private SecureStorageWrapper _secureStorageWrapper;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class BackupBottomSheet : BottomSheet
public class BackupBottomSheet : BottomSheet
{
public BackupBottomSheet() : base(Resource.Layout.sheetMenu, Resource.String.backup)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class BackupPasswordBottomSheet : BottomSheet
public class BackupPasswordBottomSheet : BottomSheet
{
public enum Mode
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal abstract class BottomSheet : BottomSheetDialogFragment
public abstract class BottomSheet : BottomSheetDialogFragment
{
private const int MaxWidth = 600;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class ChangeIconBottomSheet : BottomSheet
public class ChangeIconBottomSheet : BottomSheet
{
private readonly IDefaultIconView _defaultIconView;
private readonly IIconPackView _iconPackView;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class EditAuthenticatorBottomSheet : InputAuthenticatorBottomSheet
public class EditAuthenticatorBottomSheet : InputAuthenticatorBottomSheet
{
public EditAuthenticatorBottomSheet() : base(Resource.Layout.sheetEditAuthenticator,
Resource.String.editDetails)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class EditCategoryBottomSheet : BottomSheet
public class EditCategoryBottomSheet : BottomSheet
{
public enum Mode
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class EditCategoryMenuBottomSheet : BottomSheet
public class EditCategoryMenuBottomSheet : BottomSheet
{
private string _id;
private bool _isDefault;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace AuthenticatorPro.Droid.Interface.Fragment
{
internal class ImportBottomSheet : BottomSheet
public class ImportBottomSheet : BottomSheet
{
public ImportBottomSheet() : base(Resource.Layout.sheetMenu, Resource.String.importFromOtherApps)
{
Expand Down
Loading

0 comments on commit 6fdaeda

Please sign in to comment.