Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.List;

public class Main {
    public static <T extends Object> T getWithoutRangeCheck(List<T> col, int i) {
        try {
            return col.get(i);
        } catch (IndexOutOfBoundsException e) {
            return null;
        }
    }
}