> + * KIND, either express or implied. See the License for the
> + * specific language governing permissions and limitations
> + * under the License.
> + */
> +package org.jclouds.openstack.neutron.v2_0.domain;
> +
> +/**
> + * This is used for empty responses
> + *
> + * @author Nick Livens
> + */
> +public class EmptyObject {
> +
> + public static void main(String[] args) {
> +
> + }
If we only need it in one class, make a static final object?
```
public static final Object EMPTY_OBJECT = new Object();
```
?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/44/files#r7293856