atomos/src/main/java/org/apache/felix/atomos/impl/base/AtomosBase.java [803:813]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        headers = applyHeaderProvider(holder, location, headers);

                        String symbolicName = headers.get(Constants.BUNDLE_SYMBOLICNAME);
                        if (symbolicName != null)
                        {
                            int semiColon = symbolicName.indexOf(';');
                            if (semiColon != -1)
                            {
                                symbolicName = symbolicName.substring(0, semiColon);
                            }
                            symbolicName = symbolicName.trim();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



atomos/src/main/java/org/apache/felix/atomos/impl/modules/AtomosModules.java [475:485]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                headers = applyHeaderProvider(holder, location, headers);

                String symbolicName = headers.get(Constants.BUNDLE_SYMBOLICNAME);
                if (symbolicName != null)
                {
                    int semiColon = symbolicName.indexOf(';');
                    if (semiColon != -1)
                    {
                        symbolicName = symbolicName.substring(0, semiColon);
                    }
                    symbolicName = symbolicName.trim();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



