mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Java: proper order of 'true' and 'false' in quick-fix name (IDEA-357973)
also fixes internationalization and the incorrect comma in the name for "Create missing switch branches" quick-fix GitOrigin-RevId: 16285e054447d8d15318df8889499bbbf91243a7
This commit is contained in:
committed by
intellij-monorepo-bot
parent
3d38ad9549
commit
bd7f1f4270
@@ -2428,12 +2428,12 @@ mark.modules.as.loaded.together.fix.text=Mark ''{0}'' and ''{1}'' modules as loa
|
||||
inspection.suspicious.package.private.access.description={0} is {1}, but declared in a different module ''{2}''
|
||||
replace.case.default.with.default=Replace 'case default' with 'default'
|
||||
replace.case.default.null.with.null.default=Replace 'case default, null' with 'case null, default'
|
||||
create.default.branch.fix.family.name=Insert 'default' branch
|
||||
create.null.branch.fix.family.name=Insert 'null' branch
|
||||
create.default.branch.fix.family.name=Create 'default' branch
|
||||
create.null.branch.fix.family.name=Create 'null' branch
|
||||
create.missing.enum.switch.branches.fix.family.name=Create missing enum switch branches
|
||||
create.missing.boolean.switch.branches.fix.family.name=Create missing boolean switch branches
|
||||
create.missing.sealed.class.switch.branches.fix.family.name=Create missing sealed class switch branches
|
||||
create.missing.branches.with.null.branch.fix.family.name=Create missing switch branches with null branch
|
||||
create.missing.branches.with.null.branch.fix.family.name=Create missing and 'null' branches
|
||||
create.missing.record.deconstructions.switch.branches.fix.family.name=Create missing record deconstruction switch branches
|
||||
unnecessary.fully.qualified.name.fix.family.name=Replace fully qualified name
|
||||
return.of.collection.field.fix.family.name=Make return collection 'unmodifiable'
|
||||
@@ -2488,8 +2488,8 @@ inspection.collection.must.have.initial.capacity.initializers.option=Don't repor
|
||||
utility.class.without.private.constructor.cant.generate.constructor.message=Utility class has instantiations, private constructor will not be created
|
||||
inspection.suspicious.package.private.access.problem={0} overrides a package-private method from {1} which is declared in a different module ''{2}''
|
||||
inspection.condition.covered.by.further.condition.descr=Condition ''{0}'' covered by subsequent {1, choice, 1#condition ''''{2}''''|2#conditions}
|
||||
create.missing.switch.branch=Create missing switch branch ''{0}''
|
||||
create.missing.switch.branches=Create missing branches: {0}
|
||||
create.missing.switch.branch=Create missing branch {0}
|
||||
create.missing.switch.branches=Create missing branches {0}
|
||||
redundant.as.list.for.iteration.problem=Unnecessary 'Arrays.asList()' call
|
||||
redundant.as.list.for.iteration.fix.name=Unwrap
|
||||
assert.with.side.effects.call.mutates.expression=call to ''{0}()'' mutates ''{1}''
|
||||
|
||||
Reference in New Issue
Block a user