Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setContentCharset (1.21 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifest.java

            getAttributes().put("Manifest-Version", "1.0");
        }
    
        @Override
        public String getContentCharset() {
            return contentCharset;
        }
    
        @Override
        public void setContentCharset(String contentCharset) {
            if (contentCharset == null) {
                throw new InvalidUserDataException("contentCharset must not be null");
            }
            if (!Charset.isSupported(contentCharset)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top