diff options
author | Michi Henning <michi@zeroc.com> | 2002-07-25 07:04:46 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-07-25 07:04:46 +0000 |
commit | 9e9f73e98a399180afc1a618bd4cba534fa5ed7b (patch) | |
tree | 87ab44e1284c95a9f129a7536225c6b4df79de65 /java/demo/Freeze/library/LibraryI.java | |
parent | Fixes (diff) | |
download | ice-9e9f73e98a399180afc1a618bd4cba534fa5ed7b.tar.bz2 ice-9e9f73e98a399180afc1a618bd4cba534fa5ed7b.tar.xz ice-9e9f73e98a399180afc1a618bd4cba534fa5ed7b.zip |
Changed Slice parser to disallow leading underscore for identifiers.
Changed Slice parser to reject identifiers beginning with "Ice", unless
the --ice option is used. Changed Slice parser to disallow identifiers
that have a trailing "Operations", "Holder", "Helper", "Prx", or "Ptr",
to avoid clashes with language mappings. Fixed tests and remaining code
base to work correctly with the changed rules.
Diffstat (limited to 'java/demo/Freeze/library/LibraryI.java')
-rw-r--r-- | java/demo/Freeze/library/LibraryI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/demo/Freeze/library/LibraryI.java b/java/demo/Freeze/library/LibraryI.java index c2bdf53691b..2cafbde3bd3 100644 --- a/java/demo/Freeze/library/LibraryI.java +++ b/java/demo/Freeze/library/LibraryI.java @@ -36,7 +36,7 @@ class LibraryI extends _LibraryDisp // Create a new book Servant. // BookI bookI = new BookI(this); - bookI._description = description; + bookI.description = description; Ice.Identity ident = createBookIdentity(description.isbn); |