Ignore "Id" property while reporting unrecognized configuration properties.

git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@492645 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2007-01-04 17:19:33 +00:00
parent 2013fb55b7
commit f5e4742f17
1 changed files with 2 additions and 1 deletions

View File

@ -633,7 +633,8 @@ public class ConfigurationImpl
// <prefix>.properties System property; remove that property so we
// we don't warn about it
Configurations.removeProperty("properties", remaining);
Configurations.removeProperty("Id", remaining);
// now warn if there are any remaining properties that there
// is an unhandled prop
Map.Entry entry;