Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for instantiateDeprecatedClass (0.14 sec)

  1. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleDeprecationMessageGroupedTaskFunctionalTest.groovy

                @Deprecated
                public class Legacy { }
            """
    
            file("$JAVA_SRC_DIR_PATH/MyClass.java") << """
                public class MyClass {
                    public void instantiateDeprecatedClass() {
                        new Legacy();
                    }
                }
            """
    
            when:
            executer.expectDeprecationWarning(expectedOutput)
            succeeds('compileJava')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top