views:

15

answers:

0

When Netbeans automatically implements abstract methods it generates a code something like this:

new Example() {
    public void doSomething() {
        throw new UnsupportedOperationException("Not supported yet.");
    }
};

Is it possible to remove that error throwing part from the template so next time when I use this feature it won't write that part?