Cut off newlines at end of file.

This commit is contained in:
hns 2002-09-06 19:08:08 +00:00
parent 8d35255716
commit 64b766ea35
2 changed files with 4 additions and 112 deletions

View file

@ -1,16 +1,15 @@
// DbKey.java // DbKey.java
// Copyright (c) Hannes Wallnöfer 1998-2000 // Copyright (c) Hannes Wallnöfer 1998-2000
package helma.objectmodel.db; package helma.objectmodel.db;
import java.io.Serializable; import java.io.Serializable;
/** /**
* This is the internal representation of a database key. It is constructed * This is the internal representation of a database key. It is constructed
* out of the database URL, the table name, the user name and the database * from the logical table (type) name and the object's primary key
* key of the node and unique within each Helma application. Currently only * within the table. Currently only single keys are supported.
* single keys are supported.
*/ */
public final class DbKey implements Key, Serializable { public final class DbKey implements Key, Serializable {
@ -74,56 +73,3 @@ public final class DbKey implements Key, Serializable {
} }

View file

@ -65,57 +65,3 @@ public final class SyntheticKey implements Key, Serializable {
} }