File tree 1 file changed +2
-2
lines changed
test/jdk/com/sun/net/httpserver/bugs
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2006, 2023 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2006, 2025 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -65,7 +65,7 @@ public void handle (HttpExchange t)
65
65
}
66
66
67
67
final static String request = "GET /test/foo.html HTTP/1.1\r \n Content-length: 0\r \n \r \n " ;
68
- final static ByteBuffer requestBuf = ByteBuffer .allocate ( 64 ). put (request .getBytes ());
68
+ final static ByteBuffer requestBuf = ByteBuffer .wrap (request .getBytes ());
69
69
70
70
public static void main (String [] args ) throws Exception {
71
71
Handler handler = new Handler ();
You can’t perform that action at this time.
0 commit comments