Skip to content

Commit f876b96

Browse files
committedNov 26, 2024
Merge branch 'master' into fibers
2 parents e5b804e + c329f97 commit f876b96

File tree

2 files changed

+0
-23
lines changed

2 files changed

+0
-23
lines changed
 

‎src/java.base/share/classes/javax/security/auth/Subject.java

-6
Original file line numberDiff line numberDiff line change
@@ -1418,12 +1418,6 @@ public int hashCode() {
14181418
/**
14191419
* Writes this object out to a stream (i.e., serializes it).
14201420
*
1421-
* @serialData If this is a private credential set,
1422-
* a security check is performed to ensure that
1423-
* the caller has permission to access each credential
1424-
* in the set. If the security check passes,
1425-
* the set is serialized.
1426-
*
14271421
* @param oos the {@code ObjectOutputStream} to which data is written
14281422
* @throws IOException if an I/O error occurs
14291423
*/

‎src/java.base/unix/native/libnio/fs/UnixNativeDispatcher.c

-17
Original file line numberDiff line numberDiff line change
@@ -250,23 +250,6 @@ static int statx_wrapper(int dirfd, const char *restrict pathname, int flags,
250250
}
251251
#endif
252252

253-
#if defined(__linux__) && defined(__arm__)
254-
/**
255-
* Lookup functions with time_t parameter. Try to use 64 bit symbol
256-
* if sizeof(time_t) exceeds 32 bit.
257-
*/
258-
static void* lookup_time_t_function(const char* symbol, const char* symbol64) {
259-
void *func_ptr = NULL;
260-
if (sizeof(time_t) > 4) {
261-
func_ptr = dlsym(RTLD_DEFAULT, symbol64);
262-
}
263-
if (func_ptr == NULL) {
264-
return dlsym(RTLD_DEFAULT, symbol);
265-
}
266-
return func_ptr;
267-
}
268-
#endif
269-
270253
/**
271254
* Call this to throw an internal UnixException when a system/library
272255
* call fails

0 commit comments

Comments
 (0)
Please sign in to comment.