aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com/healthmarketscience/jackcess/Database.java
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2018-12-18 21:56:25 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2018-12-18 21:56:25 +0000
commitdf615627c37907dc1960305e95d8547df37b7d03 (patch)
tree6b02158a5540c574d576706299f66ffde2d7a0d8 /src/main/java/com/healthmarketscience/jackcess/Database.java
parent84e162f6e2ccdd40f5b962fa1bb44aaab79dfa66 (diff)
downloadjackcess-df615627c37907dc1960305e95d8547df37b7d03.tar.gz
jackcess-df615627c37907dc1960305e95d8547df37b7d03.zip
get javadocs displaying correctly
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/branches/jdk8@1243 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/main/java/com/healthmarketscience/jackcess/Database.java')
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/Database.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/com/healthmarketscience/jackcess/Database.java b/src/main/java/com/healthmarketscience/jackcess/Database.java
index 3a7b65a..13e45a5 100644
--- a/src/main/java/com/healthmarketscience/jackcess/Database.java
+++ b/src/main/java/com/healthmarketscience/jackcess/Database.java
@@ -46,11 +46,11 @@ import com.healthmarketscience.jackcess.util.TableIterableBuilder;
* Database has been opened, you can interact with the data via the relevant
* {@link Table}. When a Database instance is no longer useful, it should
* <b>always</b> be closed ({@link #close}) to avoid corruption.
- * <br>
+ * <p>
* Database instances (and all the related objects) are <i>not</i>
* thread-safe. However, separate Database instances (and their respective
* objects) can be used by separate threads without a problem.
- * <br>
+ * <p>
* Database instances do not implement any "transactional" support, and
* therefore concurrent editing of the same database file by multiple Database
* instances (or with outside programs such as MS Access) <i>will generally
@@ -248,7 +248,7 @@ public interface Database extends Iterable<Table>, Closeable, Flushable
/**
* Finds all the relationships in the database in <i>non-system</i> tables.
- * <br>
+ * <p>
* Warning, this may load <i>all</i> the Tables (metadata, not data) in the
* database which could cause memory issues.
* @usage _intermediate_method_
@@ -258,7 +258,7 @@ public interface Database extends Iterable<Table>, Closeable, Flushable
/**
* Finds <i>all</i> the relationships in the database, <i>including system
* tables</i>.
- * <br>
+ * <p>
* Warning, this may load <i>all</i> the Tables (metadata, not data) in the
* database which could cause memory issues.
* @usage _intermediate_method_