Skip to content

Commit

Permalink
2009-09-16 Jonathan Yong <jon_y@users.sourceforge.net>
Browse files Browse the repository at this point in the history
	* gnu/java/security/jce/prng/natVMSecureRandomWin32.cc: Correct
	UnsupportedOperationException namespace. 



git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151775 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
davek committed Sep 16, 2009
1 parent f659550 commit 4bae63f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions libjava/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2009-09-16 Jonathan Yong <jon_y@users.sourceforge.net>

* gnu/java/security/jce/prng/natVMSecureRandomWin32.cc: Correct
UnsupportedOperationException namespace.

2009-09-16 Andrew Haley <aph@redhat.com>

* libgcj_bc.c (__data_start, data_start, _end): Add dummy usage.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jint
gnu::java::security::jce::prng::VMSecureRandom::natGenerateSeed(jbyteArray byte_array, jint offset, jint length)
{
if (length != 0)
throw new UnsupportedOperationException (
throw new java::lang::UnsupportedOperationException (
JvNewStringLatin1 ("natGenerateSeed is not available for Win32 target."));
return 0;
}
Expand Down

0 comments on commit 4bae63f

Please sign in to comment.