You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Invoke the <DlcHome value="..."/> task at the beginning of the project.
2. Invoke the <PCTLoadSchema ..../> task without defining the dlcHome attribute
in a <target ....>.
What is the expected output? What do you see instead?
java.lang.NullPointerException on the line with <PCTLoadSchema.../>
What version of the product are you using? On what operating system?
PCT-192.jar
Please provide any additional information below.
Workaround: Defining the dlcHome attribute on the task resolved the issue.
The problem was introduced with commit 7af36d547d94, where the hard coding on
the call to setProcedure() was removed from PCTLoadSchema.execute(). It appears
that PCTLoadSchema does not invoke setDlcHome in its base class if <DlcHome...>
task was included in the project.
1. The error originates from PCTLoadSchema.execute() at
setProcedure(getProgressProcedures().getLoadSchemaProcedure());
2. The reason is the getProgressProcedures() returns null, due to the private
variable pp in PCT.java being null.
Original issue reported on code.google.com by simon.l....@gmail.com on 8 Mar 2015 at 5:12
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
simon.l....@gmail.com
on 8 Mar 2015 at 5:12The text was updated successfully, but these errors were encountered: