Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for fromAcceptedChangesMap (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/AcceptedApiChanges.groovy

        Map<String, String> toAcceptedChangesMap() {
            acceptedChanges.collectEntries { change ->
                [(new Gson().toJson(change.key)): change.value]
            }
        }
    
        static Map<ApiChange, String> fromAcceptedChangesMap(Map<String, String> acceptedChanges) {
            acceptedChanges.collectEntries { key, value ->
                [(new Gson().fromJson(key, ApiChange)): value]
            }
        }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Jun 04 14:00:46 GMT 2024
    - 1.9K bytes
    - Click Count (0)
Back to Top