The Wayback Machine - https://web.archive.org/web/20220411022420/https://github.com/topics/refactoring
Skip to content
#

refactoring

Here are 916 public repositories matching this topic...

Coca is a toolbox which is design for legacy system refactoring and analysis, includes call graph, concept analysis, api tree, design patterns suggest. Coca 是一个用于系统重构、系统迁移和系统分析的工具箱。它可以分析代码中的测试坏味道、模块化分析、行数统计、分析调用与依赖、Git 分析以及自动化重构等。
  • Updated Apr 6, 2022
  • Go
yeikel
yeikel commented Apr 8, 2022

In situations where a checked exceptions are ignored intentionally, the exception should be renamed as "ignored" explicitly

Example :

try {
            final Enumeration<URL> resources = getClass().getClassLoader().getResources("optional_resource");
        
        } catch (final IOException error) {
        }
try {
        final Enumeration<URL> reso
enhancement good first issue help wanted

Improve this page

Add a description, image, and links to the refactoring topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the refactoring topic, visit your repo's landing page and select "manage topics."

Learn more