Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setProblemId (0.23 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

            }
    
            return new DeprecationMessage(summary, deprecationTimeline.toString(), advice, context, documentation, usageType, problemIdDisplayName, problemId);
        }
    
        public void setProblemId(String problemId) {
            this.problemId = problemId;
        }
    
        public static class WithDeprecationTimeline extends Documentation.AbstractBuilder<WithDocumentation> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

                setSummary(feature + " has been deprecated.");
            }
    
            @Override
            DeprecationMessage build() {
                if(problemId == null) {
                    setProblemId(createDefaultDeprecationId(feature));
                }
                return super.build();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top