[java] IDEA-371865 Inspection to convert 'System.out'<->'IO'

GitOrigin-RevId: fdb87ffc06388bd022224000c7b4e8d9e2013e9d
This commit is contained in:
Mikhail Pyltsin
2025-07-02 17:32:09 +00:00
committed by intellij-monorepo-bot
parent 59422d6662
commit 3a52f8601c
31 changed files with 522 additions and 20 deletions
@@ -733,6 +733,15 @@ inspection.explicit.to.implicit.class.migration.fix.name=Convert into compact so
inspection.explicit.to.implicit.move.to.root.title=Move Simple Source File
inspection.explicit.to.implicit.move.to.root.move=Move under the project root
inspection.explicit.to.implicit.move.to.root.delete.package=Don't move, only delete package statement
inspection.explicit.to.implicit.convert.to.io=Replace 'System.out.print()' and 'System.out.println()' with methods from 'java.lang.IO' class
inspection.migrate.from.java.lang.io.name=Method from 'System.out' can be used instead of 'java.lang.IO'
inspection.migrate.from.java.lang.io.fix.family=Replace with 'System.out' methods
inspection.migrate.from.java.lang.io.fix.name=Replace with ''{0}''
inspection.migrate.to.java.lang.io.name=Method from 'java.lang.IO' class can be used
inspection.migrate.to.java.lang.io.fix.name=Replace with ''{0}''
inspection.migrate.to.java.lang.io.fix.family=Use method from 'java.lang.IO' class
inspection.migrate.to.java.lang.io.option.ordinary=Report in regular classes
inspection.migrate.to.java.lang.io.option.implicit=Report in compact source files
inspection.inconsistent.text.block.indent.name=Inconsistent whitespace indentation in text block
inspection.inconsistent.text.block.indent.message=Text block indent consists of mixed tabs and spaces
inspection.inconsistent.text.block.indent.spaces=Indent text block with spaces only