Author: ms1279
Date: Mon Mar  2 07:47:13 2009
New Revision: 2953

Modified:
   trunk/src/ca/sqlpower/architect/profile/ProfileManagerImpl.java

Log:
Corrected a small error caused by the way the createUserPrompter method was called.

Modified: trunk/src/ca/sqlpower/architect/profile/ProfileManagerImpl.java
==============================================================================
--- trunk/src/ca/sqlpower/architect/profile/ProfileManagerImpl.java (original) +++ trunk/src/ca/sqlpower/architect/profile/ProfileManagerImpl.java Mon Mar 2 07:47:13 2009
@@ -69,7 +69,7 @@
                     "\n" +
"If you proceed, the profiling information from the database" + " will be removed.", UserPromptType.BOOLEAN, UserPromptOptions.OK_NOTOK_CANCEL, UserPromptResponse.OK, - Boolean.TRUE, "Remove Profiles", null, "Keep Profiles", "Cancel"); + Boolean.TRUE, "Remove Profiles", "Keep Profiles", "Cancel");
             for (SQLObject so : e.getChildren()) {
                 SQLDatabase db = (SQLDatabase) so;
List<TableProfileResult> refs = new ArrayList<TableProfileResult>();

Reply via email to