Github user matthiasblaesing commented on a diff in the pull request:
https://github.com/apache/incubator-netbeans/pull/16#discussion_r142002680
--- Diff:
db.dataview/test/unit/src/org/netbeans/modules/db/dataview/util/TestCaseDataFactory.java
---
@@ -39,11 +39,11 @@
public static String DB_SQLINSERT="dbinsert.sql";
public static String DB_SQLSELECT="dbselect.sql";
public static String DB_SQLUPDATE="dbupdate.sql";
- public static String DB_TEXT= "dbdata.txt";
+ public static String DB_DATA= "dbdata.properties";
--- End diff --
It was necessary to make it clear, that dbdata is not a plain text file,
but a properties file. Else the next reader wonders why the comment header work
correctly or where it gets stipped out. For a properties file this is correct
by definition.
---