Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
naotoj committed Nov 9, 2023
1 parent cdf3373 commit 79b0be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/java.base/share/classes/java/nio/charset/Charset.java
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ protected Charset(String canonicalName, String[] aliases) {
}
}
this.name = canonicalName;
this.aliases = as;
this.aliases = Arrays.copyOf(as, as.length);
}

/**
Expand Down

0 comments on commit 79b0be1

Please sign in to comment.