Skip to content

Commit 92275b1

Browse files
committed
typo fixed
1 parent 7dff890 commit 92275b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

visualvm/libs.profiler/profiler/src/org/graalvm/visualvm/lib/profiler/LoadedSnapshot.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ public void save(DataOutputStream dos) throws IOException, OutOfMemoryError {
308308
dos.writeByte(SNAPSHOT_FILE_VERSION_MINOR); // 3. file version
309309
dos.writeInt(getType()); // 4. int type
310310
dos.writeInt(compressedLen); // 5. int length of compressed snapshot data size
311-
dos.writeInt(uncompressedLen); // 5. int length of compressed snapshot data size
311+
dos.writeInt(uncompressedLen); // 5. int length of uncompressed snapshot data size
312312
dos.write(compressedBytes, 0, compressedLen); // 6. compressed snapshot data bytes
313313
dos.writeInt(baos2.size()); // 7. int length of settings data size
314314
dos.write(baos2.toByteArray()); // 8. settings data bytes (.properties plain text file format)

0 commit comments

Comments
 (0)