Fixed: [Issue 94] Importing "google/protobuf/descriptor.proto" does not work Fixed resolution of types from descriptor.proto to require FQNs.
diff --git a/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider.java b/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider.java index 9467c56..67accec 100644 --- a/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider.java +++ b/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider.java
@@ -149,9 +149,6 @@ if (!targetType.isInstance(t)) continue; T type = targetType.cast(t); descriptions.addAll(fullyQualifiedNamesOf(type)); - for (QualifiedName name : importedNamesProvider.namesOf(type)) { - descriptions.add(create(name, type)); - } } return descriptions; }