exe format, you get this error message. The Windows Compatibility View Settings provide a list of the "associated programs" your computer uses to open VMG files. Selecting an option from this list should solve your problem.
/*
* Copyright (C) 2009 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.elasticsearch.common.inject.internal;
import org.elasticsearch.common.inject.Binding;
import org.elasticsearch.common.inject.multibindings.Named;
import org.elasticsearch.common.inject.spi.BindingTargetVisitor;
import org.elasticsearch.common.inject.spi.Multibindings;
public class BindingTargetVisitorMultibindings2 implements BindingTargetVisitor {
@Override
public boolean isIncluded(Binding binding, Multibindings multibindings) {
if (binding instanceof Named) {
Named named = (Named) binding;
return isIncluded(named.getBinding(), multibindings);
} else {
return false;
}
}
public boolean isIncluded(Multibindings multibindings) {
for (Binding binding : multibindings.getBindings()) {
Related links:
Comments