jdk/src/java.base/unix/classes/java/lang/ProcessEnvironment.java
changeset 32649 2ee9017c7597
parent 29986 97167d851fc4
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
   122                 ("Invalid environment variable value: \"" + value + "\"");
   122                 ("Invalid environment variable value: \"" + value + "\"");
   123     }
   123     }
   124 
   124 
   125     // A class hiding the byteArray-String duality of
   125     // A class hiding the byteArray-String duality of
   126     // text data on Unixoid operating systems.
   126     // text data on Unixoid operating systems.
   127     private static abstract class ExternalData {
   127     private abstract static class ExternalData {
   128         protected final String str;
   128         protected final String str;
   129         protected final byte[] bytes;
   129         protected final byte[] bytes;
   130 
   130 
   131         protected ExternalData(String str, byte[] bytes) {
   131         protected ExternalData(String str, byte[] bytes) {
   132             this.str = str;
   132             this.str = str;