- Fix that allows people using JDK 1.3 to compile this class.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149984 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2003-05-04 21:13:49 +00:00
parent 1c8db6cfd0
commit 3b711ddb22
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ package org.apache.lucene.store;
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001, 2002, 2003 The Apache Software Foundation. All
* Copyright (c) 2001, 2003 The Apache Software Foundation. All
* rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -92,7 +92,7 @@ public final class FSDirectory extends Directory {
try {
DIGESTER = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException e) {
throw new RuntimeException(e);
throw new RuntimeException(e.toString());
}
}