From 5f26eb28c9b6c6eaba080a8929c9043048e3bcd3 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 20 Nov 2008 00:16:57 +0000 Subject: [PATCH] Fixed sed error. --- src/java/com/samskivert/depot/tools/GenRecordTask.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/com/samskivert/depot/tools/GenRecordTask.java b/src/java/com/samskivert/depot/tools/GenRecordTask.java index a3d0cf0..187c6bb 100644 --- a/src/java/com/samskivert/depot/tools/GenRecordTask.java +++ b/src/java/com/samskivert/depot/tools/GenRecordTask.java @@ -470,13 +470,13 @@ public class GenRecordTask extends Task protected Class _prclass; /** Specifies the path to the name code template. */ - protected static final String NAME_TMPL = "com/samskivert.depot/tools/record_name.tmpl"; + protected static final String NAME_TMPL = "com/samskivert/depot/tools/record_name.tmpl"; /** Specifies the path to the column code template. */ - protected static final String COL_TMPL = "com/samskivert.depot/tools/record_column.tmpl"; + protected static final String COL_TMPL = "com/samskivert/depot/tools/record_column.tmpl"; /** Specifies the path to the key code template. */ - protected static final String KEY_TMPL = "com/samskivert.depot/tools/record_key.tmpl"; + protected static final String KEY_TMPL = "com/samskivert/depot/tools/record_key.tmpl"; // markers protected static final String MARKER = "// AUTO-GENERATED: ";